wordpress程序,怎样可以获取当前文章分类下的所有文章,并且打印出标题带连接。
发布网友
发布时间:2022-05-29 19:52
我来回答
共1个回答
热心网友
时间:2023-11-17 05:17
可分2步走:
1、先获取指定文章(ID)的所有分类ID
2、根据分类ID,重新query
据此思路,提供代码如下:
if ( ! function_exists('wpdit_get_posts_in_same_categories') ) {
function wpdit_get_posts_in_same_categories( $post_id ){
$post = get_post( $post_id );
if ( ! $post )
return;
$categories = get_the_category($post_id);
if ( ! count( $categories ) )
return;
$cid = array();
foreach ( $categories as $key => $category ) {
$cid[] = $category->term_id;
}
$args = array(
'post__not_in' => array( $post_id ),
'category__in' => $cid,
);
$relate_posts = get_posts( $args );
if ( is_wp_error($relate_posts) )
return;
foreach ($relate_posts as $key => $relate_post ) {
printf( '<a href="%s">%s</a>',
get_permalink( $relate_post->ID ),
get_the_title( $relate_post->ID )
);
}
}
}
将
wpdit_get_posts_in_same_categories( the_ID() );
放于需要的地方,只要指定post_id即可。(要在文章获取的循环内,否则the_ID()无结果)