WordPress后台添加摘要编辑框框

晨行星 2018-8-30 3434

WordPress后台添加摘要编辑框框。

WordPress后台页面添加摘要,WordPress后台文章添加摘要编辑栏。

在wordpress主题的functions.php文件中添加如下代码:

/*  为文章和页面摘要的栏目 */
add_action( 'admin_menu', 'my_page_excerpt_meta_box' );
function my_page_excerpt_meta_box() {
add_meta_box( 'postexcerpt', 'Excerpt', 'post_excerpt_meta_box', 'page', 'normal', 'core' );
}



最新回复 (0)
全部楼主
返回