Friday, March 10th, 2006
A XSS issue has been discovered in WordPress 2.0.1 and fixing it WP Team has released a Security Release WordPress 2.0.2
Download WordPress 2.0.2
This release contains several bugfixes and security fixes.
Read more here.
(read more)
Wednesday, February 15th, 2006
Using the Wordpress plugin Ultimate Tag Warrior? A very nice plugin to add technorati type tagging in your blog.
You might have notices that it doesnt put a Page Title on the Tags Page. ( /tag/tagname/ )
Its pretty much simple to make the title apper on those "per tag" page.
How ever it can be done just by editing a single line in your blog theme.
1. Open up the header.php file (in your theme)
2. Add the following in your TITLE tags
< ?php if(is_tag()) {echo " : "; UTW_ShowCurrentTagSet('',array('first'=>'%tagdisplay% ','default'=>', %tagdisplay%'));} ?>
3. Save
You can customize it as per your requirement.
Originaly taken ...
(read more)