- WordPress How To: Latest Posts by Category Archive – One technique that is most common with WordPress magazine or news style themes is the display an archive of the latest posts by category, as…
- Adding Your Blog to Facebook – …is a BAD THING! I personally do not recommend adding your blog’s feed to Facebook. Both Typepad and Google suggest otherwise, but let me ex…
- How to: Manually reset your WordPress password – To achieve this recipe, login to your PhpMyAdmin, select your WordPress database and click on the “SQL” button to open the SQL query window….
- Specify your canonical – Carpe diem on any duplicate content worries: we now support a format that allows you to publicly specify your preferred version of a URL. If…
- Lorelle on WP: WordPress 2.7.1 Released – WordPress 2.7.1, a maintenance release, is out. If you are using WordPress 2.7, take advantage of the automatic built-in upgrade. If you are…
- How to: get rid of links in your comments – Just paste this code in your function.php file. Once the file is saved, you can say goodbye to links and other undesired html in your commen…
Today I would like to announce the release of ‘SEO No Duplicate’ WordPress Plugin, a plugin that helps tell search engine bots the preferred version of a post page by specifying the canonical properly within your head tag.
Why would you do such a thing? Simply because many black-hat SEO consultants abuse duplicate content to gain search ranking and search engines try really hard to detect and penalize them. The last thing you want to do is present yourself as an SEO spammer to search engines.
This plugin is based on my previous post on how to automatically deal with duplicate content. Please feel free to use the comments section for bug reports, feature requests, and suggestions.
Read on…
The Official Google Webmaster Central Blog recently announced that they now support the ability for you to specify the preferred version of a URL. This means that following these guidelines will help you eradicate your site’s duplicate contents that Googlebot sees.
Why would you do such a thing? Simply because many black-hat SEO folks abuse duplicate content to gain search ranking and Google tries really hard to detect and penalize them. The last thing you want to do is present yourself as an SEO spammer to Google.
In the post, Google is saying that you can easily tell the Googlebot the preferred version of a page by specifying the following tag within your <head></head> tag:
<link rel="canonical" src="http://example.com/your/preferred/version/of/this/page"/>
Buy Sell Ads WordPress plugin version 0.2 is here!
What’s new this release?
This version of Buy Sell Ads WordPress plugin has two minor enhancements.
- Previously the nonce key is automatically generated every time you visit the Buy Sell Ads plugin options page. Now the nonce key automatically regenerates every half hour by default and this interval is configurable. This enhancement helps combat people who visit your blog, comment “It took all of 2 seconds to block all ads from this site”, and run off. When they return more than half an hour later, they will see the advertisement again because the nonce key has changed.
- Previously advertisement URLs were redirected through the plugin’s proxy but most of the URL was still unshielded. Now the entire advertisement URL is encrypted into a random string. This enhancement combined with one above officially makes this plugin too smart for AdBlock Plus to figure out.
Ajay D’Souza who regularly writes on Weblog Tools Collection had recently updated a plugin called ‘Where did they go from here?‘. Originally developed by Mark Ghosh, this plugin keeps track of where your readers go after reading a post and displays this list at the end of your post. This works just like Amazon’s “Customers Who Bought This Item Also Bought” feature on their product page.
I never noticed this plugin before and I’m quite surprised that I have missed it considering how useful it is.
Read on…
Today I would like to announce the release of ‘Buy Sell Ads’ WordPress Plugin, a plugin to help you easily integrate your Buy Sell Ads zones and includes anti-AdBlock meaures to help prevent AdBlock (and similar software) from blocking Buy Sell Ads advertisements.You might ask “Why would I want to do that?” Here is why:
- AdBlock lowers your ad impression statistics tracked by Buy Sell Ads, which makes your advertisement spot lose value.
- Buy Sell Ads advertisers will have an extra incentive to advertise on your site because AdBlock will not be able to block their ads.
Again, feel free to use the comments section for bug reports and feature requests/suggestions.
- WP Plugin: Where did they go from here? – Ever been on Amazon.com and seen the “Customers Who Bought This Item Also Bought”. So, why not apply the same concept to your WordPress blog…
- How To Sleep Better After an Upgrade – Blog Unit Testing – Upgrading your blog platform? This guest post from Sid Savara, who writes about personal development and personal productivity is for you.
- Clear And Effective Communication In Web Design – By Steven Snell. Communication is one of the foundational elements of a good website. It is essential for…
- 5 Steps to Getting Traffic to Your New Blog on a No-String Budget – Written by Leo Dimilo
- Are You Making These 10 PHP Mistakes? – on NETTUTS
In this post I will show you how to quickly migrate a WordPress blog to a different host. Certainly not everybody’s configurations are the same, so this should be used as a general guideline only.
Put your site in maintenance mode
- Download and activate the ever useful Maintenance Mode plugin.
Move files and data
- Login to your current host via SSH and cd to the directory above your blog root
- Run the following command to archive your WordPress code:
tar -zcvf blog.tar.gz path/to/your/blog/
This post is one of my WP Greet Box Troubleshooting Guides series (more to come).
Symptom
You have installed WP Greet Box and found that your greeting messages do not show up.
Note that this troubleshooting guide should only be used for WP Greet Box with cache compatibility mode enabled.
Step 1: Check code embed
- Visit one of your post pages.
- Make sure there are no javascript error messages when you visit a post page.
- On your post page, do a browser View > Source on the page, then check if the following text are there:
- wp-greet-box/css/wp-greet-box.css
- id=”greet_block”
- wp-greet-box/js/functions.js
- wp-greet-box/js/onload.js
If all is there, then proceed to next step.
If wp-greet-box/css/wp-greet-box.css does not exists, it could mean that your theme does not make a call to the standard wp_head() function. You can fix this issue by manually inserting the follow between your <head> and </head> tags:
<link rel="stylesheet" href="/wp-content/plugins/wp-greet-box/css/wp-greet-box.css" type="text/css" />If wp-greet-box/js/functions.js & wp-greet-box/js/onload.js does not exists, it could be that your theme does not make a call to the standard wp_footer() function. You can fix this issue by adding <?php wp_footer(); ?> into your theme’s footer.php or manually inserting the following towards the bottom of your HTML (near the </body> tag):
<script type="text/javascript" src="/wp-content/plugins/wp-greet-box/js/functions.js"></script> <script type="text/javascript" src="/wp-content/plugins/wp-greet-box/js/onload.js"></script>
If any of these are not there, you might have not installed the plugin properly. Please read the readme.txt file and then retry the installation.
Read on…
- 20 Useful Resources for Learning about CSS3 – Though W3C’s CSS3 specifications aren’t finalized yet, modern web browsers such as Mozilla Firefox, Opera, and WebKit-based browsers already…
- Anybody want to test a new widget? – A few days ago, I mentioned that I’d be releasing a beta version of a new widget. Now, I’m looking for people to test it out and provide ins…
- 15+ Tips to Speed Up Your Website, and Optimize Your Code! – …
- PHP Cross Reference of WordPress – If you’re coding in PHP a lot, PHPXref is one of the coolest tools available. It allows you to browse large portions of source code, and fin…
- Coding the WordPress Loop – Have you ever downloaded a WordPress theme with sloppy code?
There’s probably a good chance you have. Either more than 90% of themes have sl…


