To add the Facebook famous “Like” and “Recommend” button to your posts and it increase their website popularity. First, Login as administrator in your WordPress admin panel. Then go to Appearance ->…
Category: Wordpress.
How to change a WordPress site URL
If you may want to change the URL of your WordPress site. The function provided by the WordPress developers to change the site url is “update_option”. Simply add these lines to the…
How to show the author in a WordPress post?
To show the information about the post author, first open the single.php file in your WordPress theme and find the where the content is displayed: <?php the_content(”); ?> Then add the following…
How to display posts from a category in WordPress?
To display posts from a single category in your WordPress theme, you should add the following code below the Loop: <?php query_posts( ‘cat=34’ ); ?> This code will only showing posts from…
The Loop in WordPress
The Loop is WordPress to display posts. Using The Loop, WordPress processes each post to be displayed on the current page, and formats it according to how it matches specified criteria within…
How to add Google AdSense to WordPress?
In WordPress it is easy to add your AdSense code to your blog. First login to the administration panel of your website. Then, go to the Appearance -> Widgets menu. In this…
Basic WordPress SEO
Permalinks – It used to customize your website links Meta descriptions – Meta description for each page/post makes you to improve your website ranking in the search engine. Optimize your images –…
How to install Simple PayPal Shopping Cart?
To implement shopping cart in wordpress we can use Simple Paypal Shopping Cart plugin To install a Simple Paypal Shopping Cart WordPress Plugin by the Search or Upload functionality Go to plugins->Add…
Best SEO Plugins for WordPress Blogs
WordPress SEO by Yoast WordPress SEO by Yoast offers a broad range of features such as Page Analysis Technical WordPress Search Engine Optimization Meta & Link Elements XML Sitemaps RSS Optimization Breadcrumbs Edit your…