Revision: 45348
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at April 28, 2011 19:57 by psteinweber
Initial Code
/*--------------------------------------------------*/
/** categories not in regular homepage loop teaser */
/*--------------------------------------------------*/
function exclude_front_page() {
global $query_string;
if (is_home()) {
query_posts($query_string.'cat=-3,-80,-101');
}
}
add_action('thesis_hook_before_content', 'exclude_front_page');
Initial URL
Initial Description
Initial Title
Thesis: exclude category from blogpage
Initial Tags
wordpress, category
Initial Language
PHP