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作为一款强大的建站平台,为外贸企业提供了丰富的功能和灵活的定制选项。在这篇教程中,我们将… Continue reading WordPress外贸建站教程实用技巧分享

GGD独立站与DTC独立站并不是一回事

GGD独立站与DTC独立站各有优势和适用场景,企业应根据自身定位、资源和市场环境综合考虑选择合适的模式。

WordPress外贸整站源码的实际应用技术

  在WordPress外贸建站领域,深入了解整站源码的开发技法是提升网站定制性和性能的重要一环。本文将深入探… Continue reading WordPress外贸整站源码的实际应用技术

Jianzhanpress themes are the best Chinese WordPress themes to use

Jianzhanpress.com themes are the best Chinese WordPress themes to use

莫卧儿专业的帝国CMS模板平台

莫卧儿mowoer.com专业的帝国CMS模板平台是一个专注于提供帝国CMS模板的资源平台。

新能源行业产品出海独立站搭建需要注意些什么

新能源行业产品出海独立站搭建需要注意以下几个关键点,每一个都不容忽视。