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禁用Feed

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

WordPress外贸建站平台的最佳实践

  在构建WordPress外贸网站时,深入了解和正确应用核心功能是确保网站成功的关键。本文将解析WordPr… Continue reading WordPress外贸建站平台的最佳实践

用简站wordpress主题快速建站的操作方法

通过以上步骤,你可以快速搭建一个简洁、实用且安全的WordPress网站,并利用简站主题的优势来简化网站建设过程。

站易WordPress

站易WordPress是一家专业提供网站建设和运营服务的专业wordpress建站服务商,成立于2014年6月11日。

wordpress子分类调用父分类名称和链接

子分类与父分类名称和链接调用相关

为wordpress特定分类目录下的内容添加自定义字段

为wordpress特定分类目录下的内容添加自定义的字段,并且只在该分类下的内容录入时显示