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
How to Remove (RSS) in Archive Template
(5 posts)-
Posted 2 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 2 years ago # -
Great, this works perfectly, thank you.
Posted 2 years ago # -
Yes it did!
Webdesigner
www.NordicDesign.caPosted 1 year 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 6 months ago #
Reply
You must log in to post.