wordpress为指定Tag添加特定tag模板

wordpress模板制作会用到的有用代码 add_filter( 'single_template', 'custom_single_template_for_tag' ); function custom_single_template_for_tag( $template ) { if ( has_tag( 'my-tag' ) ) { $new_template = locate_template( array( 'single-my-tag.php' ) ); if ( '' != $new_tem…