複数ユーザで記事を投稿出来る仕組みを採用している時に、投稿者の名前を載せたい場合は、こうすればいい。
Wordpressの記事一覧を自分でプログラムを書いて表示する方法です。

[php]
< ?php $date_format = get_option( 'date_format' ); $posts = get_posts('category=3&numberposts=5'); setup_postdata($post); foreach($posts as $post): ?>

  • < ?php the_time($date_format); ?> < ?php the_author_meta('last_name',$post->post_author); ?> < ?php the_author_meta('first_name',$post->post_author); ?>
    < ?php the_title(); ?>
    < ?php the_excerpt(); ?>

  • < ?php endforeach; ?>

    [/php]

    ちょっと細かく補足

    02行目:管理画面の[設定][一般][日付のフォーマット]で取得したフォーマットを取得
    [php]
    $date_format = get_option( ‘date_format’ );
    [/php]

    03行目:カテゴリ№3の記事を5件取得
    [php]
    $posts = get_posts(‘category=3&numberposts=5’);
    [/php]

    10行目:姓、名を取得して表示
    わざわざ、記事のauthorを渡さなくても出来るはずなんだけど・・・
    [php]

    < ?php the_time($date_format); ?> < ?php the_author_meta('last_name',$post->post_author); ?> < ?php the_author_meta('first_name',$post->post_author); ?>

    [/php]