• Hello i need help with categry and sub-categry links
    I want to remove the main category link which contains subcategories

    EX: MUSIC
    – Rock
    – RNB
    – Instrumental

    I want to remove the link from the MUSIC category so only the sub-categories should have links…

    So anyone… any idea… PLEASE

    THANKS IN ADVISE.

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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)

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Need help with wp Categories !’ is closed to new replies.