WordPress为某个分类添加特定的内容页模板

如果想给某个分类目录下的内容页用不的模板,可以使用以下的方式实现。 将以下这段代码放到functions.php中 add_filter( 'single_template', 'get_wordpress_cat_template' ) ; function get_wodepress_cat_template( $single_template ) { global $post;//wodepress.com if ( is_category( 'news' ) || in…