簡體   English   中英

獲取作者在空間類別中的帖子

[英]Get the author's posts in spacific category

我想在空間類別中獲取作者的帖子並將其顯示在作者頁面中我嘗試了此代碼但它不起作用,有什么問題? 我的代碼:

<?php
$url= get_site_url();
$author_id = get_the_author_meta('ID');
$args = array(
    'author' => $author_id,
    'tax_query' => array(
        'relation' => 'AND',
        array(
            'cat' => '161,181,157',
            'post_count' => '3',
        ),
    ),
);
$query = new WP_Query( $args );
while ( $query->have_posts() ) {
    $query->the_post();
    $postid = get_the_ID();
    echo '<a href='. $url .'?p='. $postid .'>' . get_the_title() . '</a>';
}
?>

試試下面的代碼。

$url = get_site_url();
$author_id = get_the_author_meta('ID');
$args = array(
    'author' => $author_id,
    'tax_query' => array(
        array(
            'taxonomy' => 'category',
            'field'    => 'term_id',
            'terms'    => array(161,181,157)
            
        ),
    ),
);
$query = new WP_Query( $args );
while ( $query->have_posts() ) {
    $query->the_post();
    $postid = get_the_ID();
    echo '<a href='. $url .'?p='. $postid .'>' . get_the_title() . '</a>';
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM