傻大憨

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 傻大憨

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

wordpress按用户ID调用用户信息

wordpress按用户ID调用用户信息

wordpress禁用Rest API

将以下代码插入到functions.php文件中即可禁用Rest API

给wordpress添加限制游客浏览数量功能

wordpress游客只可以浏览5个内容,其它更多的是的需要注册后才能浏览。

东南亚跨境电商的发展潜力

东南亚跨境电商市场凭借其快速成长的市场规模、年轻且多元化的消费群体、政府政策支持以及完善的基础设施建设,展现出巨大的发展潜力。

WordPress外贸建站从初级到高级的全面指南

  WordPress是构建外贸网站的强大平台,而深度学习WordPress建站技能是打造成功网站的关键。本文… Continue reading WordPress外贸建站从初级到高级的全面指南

WordPress外贸建站推广的有效策略

  在当今数字化的商业环境中,成功的外贸建站不仅仅依赖于网站的外观和功能,更需要通过搜索引擎优化(SEO)来提… Continue reading WordPress外贸建站推广的有效策略