WordPress 页面默认是没有摘要功能的,给 WordPress 页面添加摘要可以用来自定义页面的描述功能,对于 seo 是极好的。
function my_init() {
add_post_type_support('page', array('excerpt'));
}
add_action('init', 'my_init');
//实现给 WordPress 页面添加摘要功能
function new_excerpt_length($length) {
return 150;
}
add_filter("excerpt_length", "new_excerpt_length");
//修改摘要默认的长度
if(get_the_excerpt()){
echo get_the_excerpt();
}
//调用添加的页面摘要
发表评论