web-dev-qa-db-ja.com

現在の作者からの他の投稿

複数著者のWordPressブログでは、現在の著者からのより多くの投稿のリストを表示する必要があります。リストはLoopの内側にあるので、<?php the_author_meta('first_name'); ?> <?php the_author_meta('last_name'); ?><?php the_author_meta('description'); ?>を使うことができますが、ユーザーの投稿を取得する方法は?

2
Dimitar

これは、ループ内で使用されたときに現在の作者の投稿を取得します。

テーマのfunctions.phpに以下を追加してください。

function my_get_display_author_posts() {
    global $authordata, $post;

    $authors_posts = get_posts( array( 'author' => $authordata->ID, 'post__not_in' => array( $post->ID ) ) );

    $output = '<ul>';
    foreach ( $authors_posts as $authors_post ) {
        $output .= '<li><a href="' . get_permalink( $authors_post->ID ) . '">' . apply_filters( 'the_title', $authors_post->post_title, $authors_post->ID ) . '</a></li>';
    }
    $output .= '</ul>';

    return $output;
}

投稿を表示するループ内で、テンプレートファイルのecho my_get_display_author_posts();を追加します。

3
sorich87

これにはwordpress query_posts関数を使用できると思います。 http://codex.wordpress.org/Function_Reference/query_posts をご覧ください。これはあなたが必要とすることをするのに十分ではないかもしれませんが、関数参照を見回し始めるべきです。

0
benstraw

get_posts()著者パラメータ と共に使用します(これらはquery_posts()ドキュメントにありますが、これらは2つの関数はほとんど同じ引数を取ります。

これにはquery_posts()を使用しないでください。メインページのループを変更するためのものです。

0
Rarst