3

我正在努力获取类别页面上的作者列表。我需要列出在该类别中至少写过 5 篇文章的作者。

我在标签中也需要这样的东西。

知道如何在 wordpress 中执行此操作吗?

4

4 回答 4

7

只有使用自定义 SQL 查询才有可能,所以这里有一个简单的函数,它应该返回一个数组,其中包含用户的用户 id,在当前术语存档中至少有 $n 个帖子,这意味着它应该在类别、标签和自定义分类中工作

function get_authors_with($num = 5){
    global $wpdb;
    $term_slug = get_query_var( 'term' );
    $taxonomyName = get_query_var( 'taxonomy' );
    $current_term = get_term_by( 'slug', $term_slug, $taxonomyName );
    $sub_q = $wpdb->prepare("SELECT * FROM $wpdb->posts
            INNER JOIN $wpdb->term_relationships ON ($wpdb->posts.ID = $wpdb->term_relationships.object_id)
            INNER JOIN $wpdb->term_taxonomy ON ($wpdb->term_relationships.term_taxonomy_id = $wpdb->term_taxonomy.term_taxonomy_id)
            WHERE ($wpdb->term_taxonomy.term_id = %s
            AND $wpdb->term_taxonomy.taxonomy = '%s'
            AND $wpdb->posts.post_type = 'post'
            AND $wpdb->posts.post_status = 'publish')",
        $current_term->term_id,
        $taxonomyName
    );
    $sql = $wpdb->prepare("SELECT $wpdb->posts.post_author, FROM (%s)
            GROUP BY $wpdb->posts.post_author
            HAVING count(*) > %s",
            $sub_q,
            $num
    );
    return $wpdb->get_results($sql);
}
于 2012-12-23T21:10:56.307 回答
2

尝试这个。

function list_author_in_this_cat ($with) {
if (is_category()) {
    $current_category = get_query_var('cat');
    $args = array(
        'numberposts' => -1,
        'category' => $current_category,
        'orderby' => 'author',
        'order' => 'ASC'
    );
} else {
    $tag_id = get_query_var('tag_id');
    $args = array(
        'numberposts' => -1,
        'tag__in' =>  $tag_id,
        'orderby' => 'author',
        'order' => 'ASC'
    );
}
$cat_posts = get_posts($args);

$author_id_array = array();
$user_posts = array();
foreach( $cat_posts as $cat_post ):
    $user_posts[$cat_post->post_author][] = $cat_post->ID;
endforeach;

foreach( $user_posts as $key => $user_post ):   
    $user_post = array_unique($user_post);
    $count_user_posts[$key] = count($user_post);

    if ($count_user_posts[$key] >= $with) {
        $author_id_array[] = $key;
    }       
endforeach;

return $author_id_array; }

在您的主题文件中,将此代码放置在您希望显示作者列表的任何位置:

if (is_category() || is_tag()) {

    $at_least = 5;  // at least 5 articles in current category or tags

    $author_array = list_author_in_this_cat ($at_least);
    foreach (array_slice($author_array, 0, 4) as $author) : // limit 4 results
        $name = get_userdata($author)->display_name;
        $link = get_userdata($author)->user_login;
        echo "<a href='/author/".$link."'>".$name."</a>\n";
    endforeach;
}
于 2012-12-27T19:59:35.570 回答
0

我用查询发布方法做了一些简单的编码。,

<?php 
$cur_cat_id = get_cat_id(single_cat_title("",false));
$posts=query_posts("cat=$cur_cat_id&order=ASC");
foreach($posts as $post){
$number_of_posts = number_format_i18n(get_the_author_posts($post->post_author));
if($number_of_posts>5)
{
echo the_author_meta('user_nicename',$post->post_author)."(".number_format_i18n(get_the_author_posts($post->post_author)).")<br>";
}
}
?>

我认为这可以帮助您解决问题。

于 2012-12-29T09:57:24.533 回答
0

将以下代码添加到主题的 function.php

function get_authors_in_category ( $category_id, $min_posts ) {
    $posts = get_posts( array( 'numberposts' => 1000, 'category' => $category_id ) );
    $author_count = array();
    foreach ($posts as $post) {
    if( array_key_exists( get_the_author_meta( 'display_name', $post->post_author ), $author_count ) ) {
      $author_count[get_the_author_meta( 'display_name', $post->post_author )]++;
     } else { $author_count[get_the_author_meta( 'display_name', $post->post_author )] = 1; }
    }
    $authors = array();
    foreach ( $author_count as $author_name => $count ) {
    if ( $min_posts  <= $count ) {
    $authors[] = $author_name;
    }
    return $authors;
  }

如您所见,此函数返回一个作者数组,这些作者在一个类别中拥有最少数量的帖子。必须传递类别 ID,这可以使用 wordpress 函数 get_cat_ID 获得。

您可以从主题中的任何位置调用此函数并根据需要显示作者。

注意:这比自定义 SQL 函数更占用资源。这个函数也可能有一些错误,我在这里输入并没有测试它。

于 2012-12-29T04:59:36.163 回答