Skip to content

Instantly share code, notes, and snippets.

@scottnix
Created January 8, 2013 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save scottnix/4482002 to your computer and use it in GitHub Desktop.
Save scottnix/4482002 to your computer and use it in GitHub Desktop.
Thematic, remove RSS from Archive Page
// reference - wordpress.org/support/topic/remove-rss-links-from-archives-page
// reference - https://github.com/ThematicTheme/Thematic/issues/28
function childtheme_override_category_archives() { ?>
<li id="category-archives" class="content-column">
<h2><?php _e('Archives by Category', 'thematic') ?></h2>
<ul>
<?php wp_list_categories(array('optioncount' => false, 'title_li' => '', 'show_count' => true)); ?>
</ul>
</li> <?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment