发布于2022年11月4日3年前 什么是智能摘要智能摘要可以帮助网站在搜索结果中展现更丰富,带来更多点击。您需要提供网站的结构化数据,在网站的页面中插入相应协议标签。这里以博客的为例<!--必填--> <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站长平台中,提交后几天便可以看到效果了! 版权属于:逍遥子大表哥本文链接:https://blog.bbskali.cn/2438.html按照知识共享署名-非商业性使用 4.0 国际协议进行许可,转载引用文章应遵循相同协议。
创建帐户或登录后发表意见