傻大憨

根据不同的分类调用指定的不同single模板

在wordpress的functions.php中,添加以下代码,即可实现根据不同的分类别名,调用指定的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-news.php' ));
        }
 // 案例
 if( has_term(array('case', 'case1', 'case2', 'case3', 'case4'), 'category', $post) ) {
 $new_template = locate_template(array('single-case.php' ));
        }

     }
 return ('' != $new_template) ? $new_template : $template;
 }
Published
Categorized as 建站知识 Tagged ,

By 傻大憨

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

为什么选择WooCommerce构建跨境电商独立站

从服务器与环境部署、WooCommerce及商业主题安装配置、多语言多币种与跨境支付接入、UI视觉定制、SEO基础架构优化,到后期迁移与运维答疑,WodeShop为外贸企业与跨境卖家提供全流程技术托底。

WordPress外贸建站平台的核心特征大揭秘

  选择适合的建站平台是外贸业务成功的重要一环,而WordPress作为建站平台的选择之一,拥有一系列核心特征… Continue reading WordPress外贸建站平台的核心特征大揭秘

一站式解决方案为你打造专业wordpress网站

  在当今数字化时代,对于外贸企业而言,拥有一个专业、易于管理的网站是取得成功的关键之一。然而,对于网络小白来… Continue reading 一站式解决方案为你打造专业wordpress网站

WordPress外贸网站建设的成功要素与技术点

  WordPress作为一款强大的建站平台,为外贸企业提供了丰富的功能和灵活的定制选项。在这篇文章中,我们将… Continue reading WordPress外贸网站建设的成功要素与技术点

按分类调用标签 调用指定分类下的TAG

在制作wordpress主题时,有时候会用到按分类调用标签的时候,用上面的这一段代码就可以解决。

wordpress禁止多地同时登录

wordpress禁止用户在不同地点同时登录,管理员除外。