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

站易ZhanYes.com不仅仅是一个WordPress主题提供商,更是您网站建设旅程中的可靠伙伴。选择站易,让您的网站在互联网上独树一帜。

WordPress外贸建站服务的成功实例分享

  在竞争激烈的外贸市场,提升用户满意度是建立和维护成功外贸网站的关键。本文将分享一些成功的WordPress… Continue reading WordPress外贸建站服务的成功实例分享

wordpress主题模板开发必须要掌握的知识点

CSS知识、HTML知识、PHP知识。

WordPress外贸建站平台功能与优势一览

  在全球数字化的时代,选择一款功能强大且领先市场的WordPress外贸建站平台至关重要。本文将为您一一解读… Continue reading WordPress外贸建站平台功能与优势一览

隐藏wordpress后台登陆地址

把wordpress后台登陆地址隐藏起来,网站会更安全。

删除wordpress版本号代码

一段代码就可以删除wordpress的版本号,掌握这些就可以自己制作主题系列。