Open the file of your template which makes the call for categories (usually: sidebar.php).
find the code “wp_list_categories”, usually:
<?php wp_list_categories(‘title_li=’); ?>
replace it for something like this:
<?php wp_list_categories(‘include=4,6,9,12&title_li=’); ?>
the numbers after “include=” shall be the ID numbers of those specific categories/subcategories you wanna make visible. Find your subcategories IDs and put them in there. This way only those categories will be displayed (without showing the main category they belong to, unless you add the ID of the parent category as well).
Cheers
Reading again, seems u dont wanna remove the whole word, just the link. Well, I’d do the same I described above, just addin something else before that code:
[li]Music[/li]
So, it’d be something like:
[ul]
[li]Music[/li]
<?php wp_list_categories(‘include=3,4,5&title_li=’); ?>
[/ul]
p.s.: replace the ” [ ” and ” ] ” signals for ” < ” and ” > ” (they cant be written here, because the use of LI and UL is allowed on forum posts)