WordPress页面添加摘要并调用摘要

Author: 陌小雨Date: 2018-01-07View: 85

WordPress页面默认是没有摘要功能的,给WordPress页面添加摘要可以用来自定义页面的描述功能,对于seo是极好的。

一串简单的代码就可以实现给WordPress页面添加摘要功能:

function my_init() {
     add_post_type_support('page', array('excerpt'));
}
add_action('init', 'my_init');

这个方法还可以给页面添加缩略图,因为用的不多,如有需要可以自行的百度add_post_type_support这个函数

如何调用添加的页面摘要呢?和文章摘要一样,我们可以通过get_the_excerpt()来调用

	if(get_the_excerpt()){
		echo get_the_excerpt();
	}