2010-06-25 31 views
13

我想更改默认模板层次结构行为,并强制所有没有自己的类别模板文件的子类别级别页面引用其父类别模板文件。在我的另一篇文章中,Richard M. gave an excellent answer解决了单个子类别的问题。有谁知道如何抽象它?Make * ALL * Wordpress类别使用其父类别模板

function myTemplateSelect() 
{ 
    if (is_category()) { 
     if (is_category(get_cat_id('projects')) || cat_is_ancestor_of(get_cat_id('projects'), get_query_var('cat'))) { 
      load_template(TEMPLATEPATH . '/category-projects.php'); 
      exit; 
     } 
    } 
} 

add_action('template_redirect', 'myTemplateSelect'); 

在此先感谢。

回答

20
/** 
* Iterate up current category hierarchy until a template is found. 
* 
* @link http://stackoverflow.com/a/3120150/247223 
*/ 
function so_3119961_load_cat_parent_template($template) { 
    if (basename($template) === 'category.php') { // No custom template for this specific term, let's find it's parent 
     $term = get_queried_object(); 

     while ($term->parent) { 
      $term = get_category($term->parent); 

      if (! $term || is_wp_error($term)) 
       break; // No valid parent 

      if ($_template = locate_template("category-{$term->slug}.php")) { 
       // Found ya! Let's override $template and get outta here 
       $template = $_template; 
       break; 
      } 
     } 
    } 

    return $template; 
} 

add_filter('category_template', 'so_3119961_load_cat_parent_template'); 

这循环了父层,直到找到直接模板。

+0

我只是试过这个,并不能得到它的工作。你介意双重检查吗? – Matrym 2010-06-25 17:52:51

+2

'TEMPLATEPATH'而不是'TEMPLATE_PATH' – 2010-06-25 18:02:00

+0

好点 - 更新:) – TheDeadMedic 2010-06-25 18:15:06

2

TEMPLATEPATH变量可能不适用于子主题 - 在父主题文件夹中查找。 改为使用STYLESHEETPATH。例如

$template = STYLESHEETPATH . "/category-{$cat->slug}.php"; 
3

我想知道如何为分层分类法做同样的事情。 TheDeadMedic的答案似乎在这种情况下工作也w /一些调整:

function load_tax_parent_template() { 
    global $wp_query; 

    if (!$wp_query->is_tax) 
     return true; // saves a bit of nesting 

    // get current category object 
    $tax = $wp_query->get_queried_object(); 

    // trace back the parent hierarchy and locate a template 
    while ($tax && !is_wp_error($tax)) { 
     $template = STYLESHEETPATH . "/taxonomy-{$tax->slug}.php"; 

     if (file_exists($template)) { 
      load_template($template); 
      exit; 
     } 

     $tax = $tax->parent ? get_term($tax->parent, $tax->taxonomy) : false; 
    } 
} 
add_action('template_redirect', 'load_tax_parent_template');