我在WordPress中有一个父类别页面,该页面在其下方显示一个帖子和四个子类别。四个子类别页面将共享相同的HTML和逻辑,但与父类别不同。父类别使用category.php和category.twig处理其HTML和内容的显示。请参见下面的代码。我如何告诉WordPress和Timber为父类别(子弹:故事)的子代使用category-child.php和category-child.twig(示例名称)。我知道我可以为每个子段标识符或ID使用category-slug.php或category-id.php,但这将需要向四个(或更多)不同的PHP和Twig文件中添加相同的代码,这并不理想。 >
category.php
/**
* @package WordPress
* @subpackage gerryfeehan
* @since 1.0.0
*/
$templates = array( 'category.twig', 'index.twig' );
$context = Timber::context();
$args = array(
'cat' => '7,5,3,4,6',
'numberposts' => 1,
'orderby' => 'date',
'order' => 'DESC',
);
$context['stories'] = Timber::get_posts($args);
$context['categories'] = Timber::get_terms('category');
$categories = get_categories(
array(
'hide_empty' => '0',
'parent' => 7,
'orderby' => 'id',
'order' => 'ASC'
)
);
// $context['categories'] = $categories;
// Updated code with suggestions from Tomek
$category = get_queried_object(); // will give you current WP_Term
if( $category->parent == 0 ) {
// parent category
$templates = array( 'category.twig' );
$context['categories'] = $categories;
} else {
// child category
$templates = array( 'category-map.twig' );
$context['categories'] = $categories;
}
// Timber::render( array( 'category.twig', 'index.twig' ), $context );
Timber::render( $templates, $context );
category.twig
{% extends "base.twig" %}
{% block content %}
<section class="stories">
<h2>Stories</h2>
{% for story in stories %}
<article class="story" id="story-{{ story.ID }}">
{% if story.thumbnail.src %}
<figure>
<img src="{{ story.thumbnail.src }}" class="" alt="{{ story.thumbnail.alt }}" />
{% if story.thumbnail.caption %}
<figcaption>{{ story.thumbnail.caption }}</figcaption>
{% endif %}
</figure>
{% endif %}
<h3 class="story__heading">
<a href="{{ story.link }}">
{{ story.title }}
</a>
</h3>
<div class="story__meta">
<time class="">{{ story.date }}</time>
</div>
<div class="story__content">
{{ story.preview.read_more(false) }}
</div>
</article>
{% endfor %}
</section>
{% if function(cat_is_ancestor_of(7, 5)) %}yolo{% endif %}
{% for category in categories %}
<div class="category">
<figure>
<figcaption>
{{ category.name }}
</figcaption>
{{ category.description }}
</figure>
</div>
{% endfor %}
{% endblock %}
以下代码可以添加到 archive.php 文件中,但是我不确定如何扩展以满足我的需求。
else if ( is_category() ) {
$term = new Timber\Term( get_queried_object_id() );
$context['term'] = $term;
$context['title'] = single_cat_title( '', false );
array_unshift( $templates, 'archive-' . $term->slug . '.twig' );
}
完整的父级和子级类别结构
父母:故事 儿童:美国,加拿大,美国和世界露营。
有什么想法吗?
答案 0 :(得分:2)
作为解决方案,您可以为子类别创建模板文件,并通过functions.php包含模板
分步进行
创建模板文件,例如 template-sub-category.php
将代码添加到您的 functions.php
add_filter( 'template_include', 'your_prefix_set_template', 10, 1 );
function your_prefix_set_template( $template_path ) {
if ( ! is_category() ) {
return $template_path;
}
$parent_category = get_term_by( 'slug', 'stories', 'category' ); // parent category
if ( empty( $parent_category ) ) {
return $template_path;
}
$term = get_queried_object();
if ( $term->parent !== $parent_category->term_id ) { // check if is the parent category
return $template_path;
}
return locate_template( 'template-sub-category.php' );
}
答案 1 :(得分:1)
将逻辑保留在category.php中。添加类似以下内容(sudo代码):
$ category = get_queried_object(); //将为您提供当前的WP_Term
if($ category-> parent == 0){
// parent category
$templates = array( 'parent-category.twig' );
$context['dataForParentCategory'] = array( ... );
}其他{
// child category
$templates = array( 'child-category.twig' );
$context['dataForChildCategory'] = array( ... );
}
Timber :: render($ templates,$ context);