SOHO创业

wordpress根据文章分类自动调用指定页面模板

通过wordpress分类目录的别名来调用指定的single模板

 add_action('template_include', 'load_single_template');
 function load_single_template($template) {
 $new_template = '';
 if( is_single() ) {
 global $post;
 // 新闻
 if( has_term('news', 'category', $post) ) {
 $new_template = locate_template(array('single-newsinfo.php' ));
        }
 // 团队
 if( has_term('team', 'category', $post) ) {
 $new_template = locate_template(array('single-team.php' ));
        }
 // 案例
 if( has_term('case', 'category', $post) ) {
 $new_template = locate_template(array('single-case.php' ));
        }
 // 产品
 if( has_term('product', 'category', $post) ) {
 $new_template = locate_template(array('single-product.php' ));
        }
     }
 return ('' != $new_template) ? $new_template : $template;
 }

把上面的代码,添加到functions.php文件中即可。

Published
Categorized as 建站知识 Tagged ,

By SOHO

wowsoho.com是一个关注跨境电商、创业话题的网站。

跨境电商独立站建的真实费用

跨境电商独立站建的真实费用是多少,看了这个明细,就一目了然了。

wordpress网站太慢 怎么才能让快起来

让wordpress网站快起来

不能赚钱的外贸网站都是垃圾网站

一个不能赚钱的外贸网站,无论它的设计多么精美,功能多么强大,都毫无价值。

wordpress子分类使用父分类模板

wordpress子分类继承使用父分类模板

WoWSOHO专业wordpress外贸建站平台

wowsoho.com的WordPress 外贸建站平台凭借其强大的功能、多语言支持和丰富的资源,成为外贸企业和个人建站的首选平台。

简站wordpress主题的三大特点

简站wordpress主题的三大特点 1、理念“崇尚简约、鄙视繁琐、化繁为简、实用即可。”简站wordpres… Continue reading 简站wordpress主题的三大特点