4 人参与回答
🌺 🌹
🌺 🌹 · 卖陶瓷板,陶瓷球阀,陶瓷环,陶瓷柱塞等

试试吧

还有挺多代码可以试试的

方法行吗?试一下

崔家大院
崔家大院 · 网站诊断、建站、快速排名

<p></p><ul><li>g:type //页面内容类型,WordPress博客通常使用article文章类型即可。og:title //这里是文章标题og:description //页面的简单描述,wordpress中可以使用文章摘要og:Site_name //页面所在网站名,wordpress中使用博客网站名称og:url //文章页面url地址og:image //文章略缩图地址 </li><li>添加方式为,找到当前主题使用文件,在标签内部插入代码:</li><li><meta property="og:type" content="acticle"><meta property="og:title" content="<?PHP wp_title('-', true, 'right'); echo get_option('blogname'); if (is_home ()) echo get_option('blogdescription'); if ($paged > 1) echo '-Page ', $paged; ?>"><meta property="og:site_name " content="<?=get_bloginfo('name');?>"><meta property="og:description" content="<?php the_excerpt();?>"><meta property="og:url" content="<?php the_permalink();?>"/><meta property="og:image" content="<?php wpjam_post_thumbnail();?>"> </li><li>其中og:image我调用的自己主题的缩略图自定义函数,诸位如果要实现,需要自定义为自己的wordpress函数调用,参考文章《<a href=" target="_blank" data-url=" class="show-5118-data" rel="Nofollow">WordPress博客文章随机添加图片并设为缩略图</a>》。</li><li>由于og协议目前只适用于wordpress文章页,只允许og协议出现在wordpress文章页,这里我们需要加一个判断:</li><li><?php if (is_single()) { ?><meta property="og:type" content="acticle"><meta property="og:title" content="<?php wp_title('-', true, 'right'); echo get_option('blogname'); if (is_home ()) echo get_option('blogdescription'); if ($paged > 1) echo '-Page ', $paged; ?>"><meta property="og:site_name " content="<?=get_bloginfo('name');?>"><meta property="og:description" content="<?php the_excerpt();?>"><meta property="og:url" content="<?php the_permalink();?>"/><meta property="og:image" content="<?php wpjam_post_thumbnail();?>"><?php } ?> </li><li>这里就能实现WordPress博客的OG协议添加了,测试一下,看看效果:</li><li></li></ul>