wordpress为指定Tag添加特定tag模板
技术文章 2024年1月6日
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_template ) {
return $new_template;
}
}
return $template;
}