为了账号安全,请及时绑定邮箱和手机立即绑定

WordPress 文章页面如何调用摘要?

WordPress 文章页面如何调用摘要?

holdtom 2019-04-13 08:45:31
给自己网站添加了360智能摘要,便于收录,其中有一行,需要在文章页的head标签中调用文章摘要,自己采用了get_the_excerpt和get_the_content函数都不行。不知该如何处理?
查看完整描述

2 回答

?
鸿蒙传说

TA贡献1865条经验 获得超7个赞

functionkankana_get_meta_description(){
$description='';
$length=100;
//ifonhomepage
if(is_home()||is_front_page()){
$description=get_bloginfo('description');
}elseif(is_singular()){
//ifviewingapost/page
global$post;
$striped_content=wp_strip_all_tags(remove_all_shortcodes($post->post_content),true);
$description=mb_substr($striped_content,0,$length);
}
//elseif(is_archive())
return$description;
}
usage
"/>
                            
查看完整回答
反对 回复 2019-04-13
  • 2 回答
  • 0 关注
  • 303 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信