You are currently browsing the archives for posts tagged as WordPress.

Blogging Pro for Sale

The blogging resource web site Blogging Pro has been put up for sale by its owner, John Hesch. The asking price starts at US$2,000.

Quoted are the reasons for his actions:

I have another project that will soon be taking up most of my time and unfortunately I will not be able to continue managing Blogging Pro. I’ve had a lot of fun and have met a lot of people from around the world while reporting on blogging resources.

WordPress Security Update

There’s a security update for WP. More info can be read here (WP Dev Blog) and on Blogging Pro.

Basically you just need to insert one line in /wp-includes/template-functions-category.php, somewhere after line 130:

function get_the_category_by_ID($cat_ID) {
$cat_ID = (int) $cat_ID;
$category = &get_category($cat_ID);
return $category->cat_name;
}

The bolded code is what you have to add.