Archives for September 24, 2007

WordPress 2.3 Is Now Available

wordpress_logo.jpg
We have seen in our [tag]Wordpress dashboard [/tag]the coming of 2.3. Today we welcome [tag]Dexter[/tag] or 2.3. Get the latest version here. I guess the biggest news of this release is [tag]tagging[/tag], [tag]tag clouds[/tag] and better [tag]URL handling[/tag]. The SEO crowds are cheering!! Check out the release notes for full updated items.

While I am glad to have an update, which means more features and more security. It also means I have to update about 15 blogs… It’s going to be a long night.

Blog Rush Exploits

burglar.jpg
In the Blog Rush Dash board there is a message about low CTR due to gaming of the system by some users, “Click- through rates are very low right now due to problems with some users cheating the system.”

There are several sites giving out information on how to exploit the BlogRush software.

I hope John’s team can address and resolve these issues very soon, or it will really compromise the effectiveness of the tool. So far John as been up front with his communication about some of the issues BR has faced since it’s launch.

Excluding Pages In The WordPress Sidebar

WP_video_tutorial.gifI created a [tag]Youtube[/tag] video to show how you can exclude a page from showing up in the [tag]Wordpress[/tag] sidebar of your blog. I did a quick search on [tag]Google[/tag] for a [tag]plug-in[/tag] but was not able to find anything. If anyone knows of a plug-in please post on the blog.

Find:
The first thing you will need to do is edit the sidebar.php file. Do a search for the following function: [tag]wp_list_pages[/tag].

Edit:
Next you will need to find the post ID for the page you want to exclude. Once you know this you will add this “&exclude=5” to your wp_list_pages function.

Example: <?php wp_list_pages(‘sort_column=menu_order&title_li&exclude=5’); ?>

Upload:
Once you have modified and saved your file then upload to your server and the page will be updated.

Done