web-dev-qa-db-ja.com

最近の投稿の抜粋を一覧表示するにはどうすればよいですか。

私は最近の3つの記事のタイトルをリストするためにコーデックスから直接これを使っています。

<ul>
<?php
$args = array( 'numberposts' => '3');
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' .   $recent["post_title"].'</a> </li> ';
}
?>
</ul>

しかしこれはうまくいきますが、post_titleをpost_excerptに変更しても抜粋は表示されません。

どうすればこれを解決できますか?

1
Ronny

get_the_excerpt()からコードを盗みます。

apply_filters( 'get_the_excerpt', $recent['post_excerpt'] )
3
fuxia