我有一个插件可以在单个页面中按作者对帖子标题进行排序 但我想在标题下添加帖子内容
if ($author_posts) {
echo '<ul>';
$i = 0;
foreach ($author_posts as $author_post) {
$postdate = date_i18n( get_option( 'date_format' ), strtotime($author_post->post_date)).' - ';
echo '<li>';
echo ($atts['postdate'] ? $postdate : ''). '<a href="' . get_permalink( $author_post->ID ) . '">'.$author_post->post_title.'</a>' ;