如何获取显示博客文章的页面的摘录

时间:2021-03-30 作者:Badan

我使用静态页面(博客)来显示最新的帖子。我想在标题旁边显示该页的摘录。然而,我使用wp_kses_post( get_the_excerpt() ), 我从post archive循环中获得最新帖子的摘录。我也试过wp_kses_post( get_the_archive_description() ) 但它似乎也不起作用。。你知道怎么做吗?

1 个回复
最合适的回答,由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 );

相关推荐

Pagination in Archives

你好,我是wordpress的新手,我很烂。我试图在wordpress中为我的博客页面添加编号分页。我下载了插件“page navi”,进入编辑器并更改了索引中的一个文件。php收件人: <?php if ( $wp_query->max_num_pages > 1 ) : ?> <div class=\"post-nav archive-nav\"> <?php wp_pagenavi();