WordPress调用自定义文章分类中的文章
要在WordPress中调用自定义文章分类中的文章,您可以使用WP_Query
或get_posts
使用WP_Query
:
$args = array(
'post_type' => 'post', // 文章类型
'posts_per_page' => 1, // 获取所有文章
'tax_query' => array(
array(
'taxonomy' => 'customcategory', // 自定义文章分类的名称
'field' => 'slug', // 根据分类别名进行查询
'terms' => 'yourtermslug', // 替换为您要调用的分类别名
),
),
);
$custom_query = new WP_Query($args);
if ($custom_query>have_posts()) :
while ($custom_query>have_posts()) : $custom_query>the_post();
// 在这里显示文章内容
the_title();
the_content();
endwhile;
endif;
wp_reset_postdata();
使用get_posts
:
$custom_category_posts = get_posts(array(
'post_type' => 'post', // 文章类型
'posts_per_page' => 1, // 获取所有文章
'tax_query' => array(
array(
'taxonomy' => 'customcategory', // 自定义文章分类的名称
'field' => 'slug', // 根据分类别名进行查询
'terms' => 'yourtermslug', // 替换为您要调用的分类别名
),
),
));
foreach ($custom_category_posts as $post) :
setup_postdata($post);
// 在这里显示文章内容
the_title();
the_content();
endforeach;
wp_reset_postdata();
确保替换示例代码中的"customcategory"和"yourtermslug"为您的自定义分类名称和术语别名。这将帮助您调用特定分类中的文章。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
仍然有问题? 我们要如何帮助您?