WordPress 分类目录是一种文章分类的集合,在一些中大型网站中,不同的分类会有不同的版面样式,如果版面类型不多的情况下,可以使用代码进行判断,实现不同分类调用不同的分类目录模板。
但是如e + : ) ^果一个网站中的分类目录模板比较多,使用, i ` r F a z代码判断就比较麻烦了。常用的方法就是给分类目录添加分类目录模板选择功能。这样在网站开发时b | ),就可以自由的选择想显示的模板了。如下图
怎么给 WordPress 分类目录添加模板选择功能呢?方法很简单,只需要将以下的函数代码粘贴到自己使用的模板的模板函数里即可。
- /*分类模板选择*/
- class Select_Categord ) K * y - ~y_Template{
- public function __construct() {
- add_filter( 'category_template', a; H d { Lrray($this,'gb ) 5 Set_custom_category_template' ));
- add_action ( 'edit_category_form_fields', array($this,'category_template_meta_box'p S 5 @ = 8 e C));
- add_action( 'category_add_form_fields', array( &$this, 'category_teD 9 V 4 n Tmplatel 3 3 O [ D_meta_box') );
- add_action( 'created_category', array( &p H 6 d ^ ~ 5 Q;$this, 'save_category_template' ));
- add_action ( 'ediC p 7 p E v ( Pted_category', array($this,'save_cat2 0 0 K : % J ,egory_template'));
- do_K ) , D R &actioX v r ) ? % /n('Custom_Category_Template_constructor',$this);
- }
- //p % C ) 添加表单到分类编辑页面
- public fund F C n 3 ; _ction category_template_meta_box( $tag ) {
- $t_id = $tag->term_id;
- $cat_meta = get_option( &} 3 6 5 \ f o equot;category_templates");
- $template =k W k 0 c isset($cat_meta[$t_id]) ? $cat_meta[$t_id] : false;
- ?>
- <tr class="form-field">
- <th scope="row" valign="top"><label for="q % Q Z _;cat_Image_url">l K 2 p :<?php _eu \ 2 x !40;'Category Template'); ?>R r G;</label><q w E ^ k x ^ 6 )/th>
- <td>
- <select name="cat_template" id="cat_temply l & O q w n A jate">
- <option value='default'><?php _e('Default Template'); ?></option>
- <?php pa2 M 2 S \ge_template_+ { 6 [ m C U B Cdropdown($template); ?>
- </select>
- &{ | Ult;br />
- <span class="deX 7 uscription"&N E I ] 8gt;<?php _eO a S A B0;'为1 4 F此分类选择一个模G V i W L 5 D y板'); ?></span>
- </td>
- </tr>
- <?php
- do_action(j ^ Z !'Custom_Category_Template_ADD_FIELDS',$tag);
- }
- // 保存表单
- public functiw A { q + , Kon savev { & 0 /_category_template( $term_id ) {
- if ( isset( $_POST['cat_template'] )) {
- $cat_meta = get_option( "category_templates");
- $ca3 X R L 1 s S & Vt_meta[$term_id] = $_POST['cat_template'];
- update_opti. ( u f [ ? O ^on( "cated \ b k F 4gory_temp= 7 vlate| 1 n k U A 5 7 gs", $cat_metaq | l L P );
- do_acz ) W / d a ~tion('Custom_Category_Template_SAVE_FIELDS',$term_id);
- }
- }
- // 处理选择的分类模板
- function get_custom_category_template( $category_template ) {
- $cat_ID = absint( get_query_var('cat') );
- $cate J 5 + )_meta = get_option('category_template O h + =es');
- if` ; Z l (isset($c! ? + e a Aat_meta[$cat_ID]) && $cat_meta[$cat_ID] != 'default' ){
- $temp = locate_2 Q A G x R 4 / Xtemplate($cat_meta[$ca@ g H i } C ntj ) @ ) x z t 6 |_ID]);
- if (!- - ] y G ? U aempty($temp))
- return apply_fiN z p ;ltersa + K 0 q $ I0;"Custom_Cate5 P v qgory_Templats { = Q k B z re_found",$temp);
- }
- return $F 8 [ * ( Dcategory_template;
- ^ ; 3 + : e =25;
- }
- $cat_template = new Select_Category_Template();
- /*分类模板选择*/
通过这个代码就可以轻松给 WordPress 后台分类目录添加模板选择功能了。