我使用静态页面(博客)来显示最新的帖子。我想在标题旁边显示该页的摘录。然而,我使用wp_kses_post( get_the_excerpt() )
, 我从post archive循环中获得最新帖子的摘录。我也试过wp_kses_post( get_the_archive_description() )
但它似乎也不起作用。。你知道怎么做吗?
最合适的回答,由SO网友:Sally CJ 整理而成
您可以使用get_queried_object()
要获取静态页面数据,然后执行类似操作以获取页面摘录,请执行以下操作:
echo get_the_excerpt( get_queried_object() );
// Or to apply filters just as the_excerpt() does:
$excerpt = get_the_excerpt( get_queried_object() );
echo apply_filters( \'the_excerpt\', $excerpt );