I'm using the archive template on my archive page. I'd like to remove: (RSS) that appears after each category. How do I do this?
ThemeShaper Forums » Thematic
[closed]
How to Remove (RSS) in Archive Template
(5 posts)-
Posted 3 years ago #
-
Try adding this to your functions.php
function remove_category_archives() { remove_action('thematic_archives', 'thematic_category_archives', 3); } add_action('init', 'remove_category_archives'); function child_category_archives() { ?> <li id="category-archives" class="content-column"> <h2><?php _e('Archives by Category', 'thematic') ?></h2> <ul> <?php wp_list_categories('optioncount=1&title_li=&show_count=1') ?> </ul> </li> <?php } add_action('thematic_archives', 'child_category_archives', 3);Posted 3 years ago # -
Great, this works perfectly, thank you.
Posted 3 years ago # -
Yes it did!
Webdesigner
www.NordicDesign.caPosted 2 years ago # -
hi I'm using the autofocus theme and I have the same question as above but... where excatly do i put this code in the thematic functions.php? I pasted it at the very end but nothing happend.
secondly I would like to have not 2 categories shown on my archives page but only one. How can 1 delete the month category?
Help much appreciated!Posted 1 year ago #
Topic Closed
This topic has been closed to new replies.