Remove view all posts filed under from Category List

November 11, 2008 – 1:37 am

Using Wordpress as a CMS site and didnt want the “view all posts filed under” showing when you mouseover the links in the Category menu created from wp_list_cats

Googled without luck for 20 mins looking for a way to remove this without messing with classes.php

Anyway this is what i come up with

<?php echo str_replace("View all posts filed under ","",wp_list_cats('echo=0')); ?>

That a simple way to strip “view all posts filed under” in your theme without a plugin,

As it uses str_replace you could always replace the text with something else.

its getting late im getting tired so could of missed an easier way. If you know of another way or this has been of help, please leave your feedback.

Post a Comment