网站制作费多少,网页广告调词平台多少钱,专业的网站建设收费标准,网站优化代码在写文章的时候选择不同的文章形式#xff0c;然后打开文章的时候会调用不同文章形式的模板。比如#xff0c;文章形式为video #xff0c;就调用single-video.php模板#xff0c;其它文章形式类似#xff0c;可以添加多个文章样式。
//为不同文章形式的内容添加不同的si…在写文章的时候选择不同的文章形式然后打开文章的时候会调用不同文章形式的模板。比如文章形式为video 就调用single-video.php模板其它文章形式类似可以添加多个文章样式。
//为不同文章形式的内容添加不同的single页面
add_action(template_include, load_single_template);
function load_single_template($template) {$new_template ;// single post templateif( is_single() ) {global $post;if ( has_post_format( video )) {// 文章形式为video$new_template locate_template(array(single-video.php ));// 就调用single-video.php模板}if ( has_post_format( image )) {// 文章形式为image$new_template locate_template(array(single-image.php ));// 就调用ssingle-image.php模板}
// 这里可以添加其他文章形式的模板}return (! $new_template) ? $new_template : $template;
}
将以上代码添加到functions.php文件中即可。
原文
https://www.zhanyes.com/code/5038.html