私は最近の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に変更しても抜粋は表示されません。
どうすればこれを解決できますか?
get_the_excerpt()
からコードを盗みます。
apply_filters( 'get_the_excerpt', $recent['post_excerpt'] )