我在Wordpress中是一个全新的人,请原谅我的愚蠢问题。 我想创建所有类别的菜单。我创建了这样的菜单,但是在单击具有类别名称的特定菜单项后,它会将我链接到我的主页。我应该在页面上添加什么代码以显示具有特定类别的所有帖子?
答案 0 :(得分:1)
在您的wordpress主题内,您必须具有一个名为“ content.php”的页面,该页面将通过以下代码包含在内。在该模板中,您可以像这样使用wordpress函数... the_title();依此类推..您只需要检查Wordpress Codex
$args['tax_query'][] =
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'category slug must go here'
);
<?php $query = new WP_Query($args); ?>
<?php while ( $query->have_posts() ) : the_post(); ?>
<div>
<?php
$query->the_post();
get_template_part( 'content', get_post_format() );
?>
</div>
<?php endwhile; ?>