Advertisement
Guest User

Wordpress Single Template Based on Category

a guest
Jan 31st, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. add_filter(‘single_template’, create_function($t’,foreach( (array) get_the_category() as $cat ) { if ( file_exists(TEMPLATEPATH ./single-{$cat->term_id}.php”) ) return TEMPLATEPATH ./single-{$cat->term_id}.php”; } return $t;));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement