groups

info


tags: wordpress

Link to this snippet:


Download to Code Collector

language: PHP
licence: BSD

CUSTOM TEMPLATES FOR POSTS IN WORDPRESS

options: send to code collectorview all maeghan's snippets
function custom_template($template) {
    global $wp_query;
    $cats = get_the_category($wp_query->post->ID);
    $cat = $cats[0];
    if (file_exists(TEMPLATEPATH."/category-".$cat->cat_ID.'.php')) {
    return TEMPLATEPATH."/category-".$cat->cat_ID.'.php';
   }
 return $template;
}
 
add_filter('single_template', 'custom_template');