WordPress, one of the most popular CMS softwares on the web, has had over 65 million downloads since version 3.0 was released. Then came three major iterations and the latest version 3.3 it is named “Sonny” in honor of the great jazz saxophonist Sonny Stitt. The latest major WordPress iteration contains significant polish around user experience, navigation, uploading and also imports. But there was a problem. WordPress 3.3 “Sonny“, was discovered to have a cross-site scripting vulnerability. This vulnerability can be solved easily by upgrading your WordPress from the dashboard to version 3.3.1 (download WordPress 3.3.1), which is a security and maintenance release where 15 issues were solved. Good luck!
Posts Tagged ‘WordPress’
Upgrade your WordPress from 3.3 to 3.3.1
Wednesday, January 4th, 2012WordPress: Remove or replace parentheses from Category Counts (wp_list_categories)
Wednesday, June 8th, 2011You can learn the basics about the wp_list_categories() function from the WordPress Codex.
By default this function will not show up the post count, but if you will activate it by show_count=1, the post count will be surrounded by parentheses. To remove the parentheses without modifying the WordPress core files, you need to use the following code:
<?php
$variable = wp_list_categories('echo=0&show_count=1&include=1,2,3,4,5&title_li=');
$variable = str_replace(array('(',')'), '', $variable);
echo $variable;
?>






