在帖子列表中获取Wordpress摘录

时间:2014-06-01 20:39:06

标签: php wordpress wordpress-plugin

我正在构建一个自定义 WordPress 小部件/插件,以便在文章的永久链接中返回帖子的标题和摘录。我几乎在那里,但我正在努力让摘录显示出来。这是我目前的代码:

<?php
$args = array( 'numberposts' => '5' );

$recent_posts = wp_get_recent_posts( $args );

foreach( $recent_posts as $recent ){

    $categories = get_the_category($recent["ID"]);

    $excerpt = apply_filters('get_the_excerpt', $recent->post_excerpt);

    echo '<a class="m-item  diet-and-nutrition" href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" > <div class="pix"></div><div class="eyebrow"> <b>' . $categories[0]->name . '</b> / '.   $recent["post_date"].'</div> <figure>' .  get_the_post_thumbnail($recent["ID"], 'full') . '<figcaption class="center"> <span> <h4>'.  $recent["post_title"].'</h4> </span> <span> <p>'.  $excerpt .'</p> </span> </figcaption> </figure> </a>';
}
?>

1 个答案:

答案 0 :(得分:0)

它是一个数组:

$recent->post_excerpt

应该是:

$recent['post_excerpt'];