With the advancement in technology, you can find a number of search engines that can allow you to make a good start while going to create your own website. You can get assistance from reputed websites like Drupal, Joomla, CMS and WordPress. It is really important to carefully choose a core engine as every engine
The 2.5 version of WordPress has introduced shortcode API in the WP development that has been preferred by almost every WordPress user to customize or improve their blogs or websites. But why? Well, it is simple to use, consists of understandable set of functions that help users to create macro codes. They are provided with
If you are new to WordPress and do not know much about its functions and how it works, then this article will prove to be the best source to troubleshoot most of your problems or bugs, particularly when it comes to WP Shopping Cart plugin. How to install WordPress? In order to set up your
In our recent project we want to use the excerpt as the meta description for single post. Here is the original codes: [php] /* * output meta description info */ function ultra_meta_desc() { echo ‘<meta name="description" content="’; if (is_single()){ the_excerpt(); } else { echo bloginfo( ‘description’ ); } echo ‘"/>’; } [/php] But the result
Many plugins and themes add JavaScript and CSS files to your site and usually these plugins will increase the total size of the page, the number of HTTP request in order to load each file separately. The good news is that WordPress has a built-in system that allows us to deregister these scripts and styles. Well, it doesn’t mean
Today I am pleased to launch the first free theme in our family – ultrahumor2013. This is a free wordpress theme for funny and humor websites, Clean and Minimalistic. Key features: 2 color schemes – Light & Dark right sidebar wordpress widget & wordpress menu support facebook comment & built-in social sharing No theme Option
If you’ve ever wanted a way for your visitors to quickly scan down a list of your posts on your homepage, then the following little trick will allow you to group your posts together by date so they will look something along the lines of the following: It’s always recommended to make a child theme
WordPress caching is the fastest way to improve performance. If your site is getting hit right now install W3 Total Cache or WP Super Cache. In addition to use above mentioned plugins,we can also leverage browser cashing to speed up our wordpress site. And the easiest way is to use .htaccess method. In order to do this, we will need
Automatically open external links in a new window with a couple lines of jquery
What we want it to be like: [html] <div class="user_menu"><a href="#">Menu Item 1</a> <a href="#">Menu Item 1</a> <a href="#">Menu Item 1</a> <div class="clear"></div> </div> [/html] Then we can add this to the functions.php: [php] <?php echo strip_tags(wp_nav_menu( array(‘theme_location’ => ‘primary’, ‘container_class’ => ‘user_menu’, ‘echo’ => false, ‘items_wrap’ => ‘%3$s<div class="clear"></div>’) ), ‘<a><div>’); ?> [/php]