什么是智能摘要
智能摘要可以帮助网站在搜索结果中展现更丰富,带来更多点击。您需要提供网站的结构化数据,在网站的页面中插入相应协议标签。
这里以博客的为例
<!--必填-->
<meta property="og:type" content="blog"/>
<meta property="og:image" content="图片地址"/>
<meta property="og:release_date" content="发表时间"/>
<!--选填-->
<meta property="og:title" content=" 博客标题"/>
<meta property="og:description" content=" 博客描述" />
<meta property="og:author" content="博客作者"/>
在typecho中配置如下
<!--360-->
<?php if($this->is('post')||$this->is('page')): ?>
<meta property="og:type" content="blog"/>
<meta property="og:image" content="<?php echo Content::returnHeaderImgSrc($this,'post',0,true); ?>"/>
<meta property="og:release_date" content="<?php $this->date('Y-m-j'); ?>"/>
<meta property="og:title" content=" <?php $this->title(); ?>"/>
<meta property="og:description" content=<?php $this->description() ?>" />
<meta property="og:author" content="<?php $this->author(); ?>"/>
<?php endif; ?>
提交样式
在360站长平台中,提交后几天便可以看到效果了!
3 comments
谢谢大表哥分享!
谢谢分享!学习了