酱茄 jiangqie.com
wordpress插件custom category templates 是一款简单轻量级插件,允许你为每个类别选择特定模板,就像页面模板一样。
安装方法:后台-插件-搜索:custom category templates 安装并启用,在编辑分类时会添加一个选择模板的选项。
面是不用安装插件的解决方法,可以直接添加到当前主题函数模板functions.php中即可。
// 分类选择模板
class select_category_template{
public function __construct() {
add_filter( 'category_template', array($this,'get_custom_category_template' ));
add_action ( 'edit_category_form_fields', array($this,'category_template_meta_box'));
add_action( 'category_add_form_fields', array( &$this, 'category_template_meta_box') );
add_action( 'created_category', array( &$this, 'save_category_template' ));
add_action ( 'edited_category', array($this,'save_category_template'));
do_action('custom_category_template_constructor',$this);
}
// 添加表单到分类编辑页面
public function category_template_meta_box( $tag ) {
$t_id = $tag->term_id;
$cat_meta = get_option( "category_templates");
$template = isset($cat_meta[$t_id]) ? $cat_meta[$t_id] : false;
?>
<tr class="form-field">
<th scope="row" valign="top"><label for="cat_image_url"><?php _e('category template'); ?></label></th>
<td>
<select name="cat_template" id="cat_template">
<option value='default'><?php _e('default template'); ?></option>
<?php page_template_dropdown($template); ?>
</select>
<br />
<span class="description"><?php _e('为此分类选择一个模板'); ?></span>
</td>
</tr>
<?php
do_action('custom_category_template_add_fields',$tag);
}
// 保存表单
public function save_category_template( $term_id ) {
if ( isset( $_post['cat_template'] )) {
$cat_meta = get_option( "category_templates");
$cat_meta[$term_id] = $_post['cat_template'];
update_option( "category_templates", $cat_meta );
do_action('custom_category_template_save_fields',$term_id);
}
}
// 处理选择的分类模板
function get_custom_category_template( $category_template ) {
$cat_id = absint( get_query_var('cat') );
$cat_meta = get_option('category_templates');
if (isset($cat_meta[$cat_id]) && $cat_meta[$cat_id] != 'default' ){
$temp = locate_template($cat_meta[$cat_id]);
if (!empty($temp))
return apply_filters("custom_category_template_found",$temp);
}
return $category_template;
}
}
$cat_template = new select_category_template();
原文来自:https://www.jiangqie.com/jc/6214.html