language: PHP
licence: BSD
CUSTOM TEMPLATES FOR POSTS IN WORDPRESS
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');



library
buttons (3)
wp (93)