WordPress页面添加摘要
文章描述:
WordPress如何给页面添加摘要功能
自定义
functions.php
add_action('init', 'page_excerpt');
function page_excerpt() {
add_post_type_support('page', array('excerpt'));
}
主题
page.php
if( has_excerpt() ){
the_excerpt();
}
发布时间:2021/07/26
发表评论