/** * Wordpress 2.9.2 doesn't give us a way to change the taxonomy labels on edit-tags.php * This just goes around and replaces them.s */ function ad_replace_tags(){ if(typeof title != 'undefined' && typeof singular != 'undefined'){ jQuery('div.tagcloud').remove(); jQuery('div.wrap h2').replaceWith('

' + title + '

'); jQuery('div.tagcloud h3').remove(); jQuery('div.form-wrap h3').replaceWith('

' + singular + '

'); jQuery('label[for=tag-name]').replaceWith(''); jQuery('label[for=tag-slug]').replaceWith(''); jQuery('label[for=slug]').replaceWith(''); jQuery('#submit').val('Add ' + singular); jQuery('p.search-box input[type=submit]').val('Search ' + title); } } jQuery(document).ready(function() { ad_replace_tags(); });