AI摘要
大家想不想要在qq内发送网站有下面的效果?
很简单的,跟着我操作。
找到include.php文件
文件目录:/usr/themes/Joe/public
编辑文件
在相关位置添加以下代码:
<!-- Open Graph 通用标签 -->
<meta property="og:type" content="website">
<meta property="og:url" content="<?php $this->options->siteUrl(); ?>">
<meta property="og:title" content="<?php $this->archiveTitle('', '', true); ?><?php $this->options->title(); ?>">
<meta property="og:description" content="<?php $this->options->description(); ?>">
<meta property="og:site_name" content="<?php $this->options->title(); ?>">
<meta property="og:image" content="https://pan.nmssb.cn/view.php/309d18bd505a8ac9a4ec279910eaf9dc.png">
<meta property="og:image:width" content="300">
<meta property="og:image:height" content="300">
<meta property="og:image:type" content="image/png">
自己需要改的就是图片,图片中已经用箭头指出,图片尺寸就是300x300。
审查元素
打开浏览器f12审查,看到图片中标注的就算是成功了,如果你有cdn且设置了缓存请刷新全站缓存就能看到效果了。快去试试吧!
最后
请看这篇文章: Open Graph 通用标签:优化社交媒体分享的必备指南 了解更多og标签!