大家想不想要在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://cdn.lyx6.com/lyx6/lyx/img/lyxlogo.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且设置了缓存请刷新全站缓存就能看到效果了。快去试试吧!
评论