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…
Matt Cutts Talks Facebook And Twitter Ranking Signals
Google has published a new Webmaster Help video today with Matt Cutts answering a question about a topic – how Facebook and Twitter affect Google rankings.
Matt Cutts Just Declared Guest Blogging ‘Done’
Google’s Matt Cutts says if you’re using guest blogging as a way to gain links in 2014, you should probably stop. Why? Because over time it’s become a more and more spammy…
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…
Tips for Website Designing
Keep your site simple and attractive Make the content easy for the reader Fonts such as Arial, Verdana and Helvetca are the best fonts for easy online scanning Don’t type more than…