概述
为什么80%的码农都做不了架构师?>>>
|Custom Post Template插件。
步骤: 1,安装custom post template插件。WP下载:点我
2. 复制single.php并重命名,例如single-new.php
3、打开重命名的文件 ,在顶部添加代码
<?php
/*
Template Name Posts: new
*/
?>
|函数指定分类模板
还有一种是用函数指定分类文章模板:点我
add_action('template_include', 'load_single_template');
function load_single_template($template) {
$new_template = '';
// single post template
if( is_single() ) {
global $post;
// 'wordpress' is category slugs
if( has_term('wordpress', 'category', $post) ) {
// use template file single-wordpress.php
$new_template = locate_template(array('single-wordpress.php' ));
}
}
return ('' != $new_template) ? $new_template : $template;
}
转载于:https://my.oschina.net/sikou/blog/517655
最后
以上就是饱满海燕为你收集整理的wordpress让文章使用不同的模板的全部内容,希望文章能够帮你解决wordpress让文章使用不同的模板所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复