下面是内存溢出 jb51.cc 通过网络收集整理的代码片段。内存溢出小编现在分享给大家,也给大家做个参考。
我们有时会根据分类的内容,想让不同的分类以不同的样式展示。通常的方法是在当前主题根目录中多建几个不同布局样式的分类模板,比如 category-1.PHP、category-2.PHP、category-3.PHP.....,后面的数字是对应该的分类 ID 号,或者使用 is_category()函数添加判断, *** 作有些繁琐。
方法一:
有个更简单的方法,安装 Custom category Templates 插件。启用插件后,在编辑分类时会添加一个选择模板的选项。制作几个不同布局风格的页面模板,模板头部必须有类似的标识:
<?PHP
/*
Template name: 模板A
*/
然后在编辑或者添加分类时,为不同的分类选择专用的模板即可,效果如图:
方法二:
下面是从 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','category_template_Meta_Box'));
add_action( 'category_add_form_fIElds',array( &$this,'category_template_Meta_Box') );
add_action( 'created_category','save_category_template' ));
add_action ( 'edited_category','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 >
<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 ><?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();
以上是内存溢出(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
总结以上是内存溢出为你收集整理的为WordPress分类添加选择不同模板选项全部内容,希望文章能够帮你解决为WordPress分类添加选择不同模板选项所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)