我发现这个出色的功能可以显示特定自定义分类下列出的所有帖子。它工作得很好。在这里找到http://gilbert.pellegrom.me/wordpress-list-posts-by-taxonomy我尝试了许多想法,但不成功,尝试对返回的数据进行分页。我要么没有数据,要么继续显示整个列表。我的一些分类法有超过 10K 的相关帖子。所以分页似乎是合乎逻辑的。
我想做的是;让返回的信息创建“n”个帖子的页面,并为其他页面(1,2,...4,5 等)创建链接。任何帮助是极大的赞赏。
我把它扔到我的函数文件中;
function list_posts_by_taxonomy( $post_type, $taxonomy, $get_terms_args = array(),
$wp_query_args = array() ){
$tax_terms = get_terms( $taxonomy, $get_terms_args );
if( $tax_terms ){
foreach( $tax_terms as $tax_term ){
$query_args = array(
'post_type' => $post_type,
"$taxonomy" => $tax_term->slug,
'post_status' => 'publish',
'posts_per_page' => -1,
'ignore_sticky_posts' => true
);
$query_args = wp_parse_args( $wp_query_args, $query_args );
$my_query = new WP_Query( $query_args );
if( $my_query->have_posts() ) { ?>
<h2 id="<?php echo $tax_term->slug; ?>" class="title">
<?php echo $tax_term->name; ?></h2>
<ul>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"
title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php
}
wp_reset_query();
}
}
}
?>
此代码进入模板,填充任何“分类”名称并显示数据。另一个我不确定的问题是,分页应该放在函数还是模板中。
<div class="my_class">
<?php
list_posts_by_taxonomy( 'my_posttype', 'taxo_mytaxo' );
?>
</div>
谢谢大家!