前面提到的《知更鸟主题《Begin》seo社会化分享优化》知识针对知更鸟的主题,但是放在其他主题上会出错,龙哥专门研究了下,可以通过在header.php里添加如下通用代码来实现og协议。
- <?php if ( is_home() ) { ?>
 - <meta property="og:title" content="龙哥 (Long.Ge) « 官方网站" />
 - <meta property="og:description" content="龙哥个人博客,用文字记录生活" />
 - <meta property="og:url" content="https://long.ge/" />
 - <meta property="og:locale" content="zh_CN" />
 - <meta property="og:image" content="https://long.ge/favicon.png" />
 - <meta property="og:type" content="website" />
 - <meta property="og:site_name" content="龙哥 (Long.Ge) - 官方网站" />
 - <?php } ?>
 - <?php if (is_singular()) { ?>
 - <meta property="og:locale" content="zh_CN" />
 - <meta property="og:type" content="acticle">
 - <meta property="og:title" content="<?php the_title();?>">
 - <meta property="og:site_name" content="<?php bloginfo('name');?>">
 - <meta property="og:description" content="<?php the_excerpt();?>">
 - <meta property="og:url" content="<?php the_permalink();?>"/>
 - <meta property="og:image" content="https://long.ge/favicon.png">
 - <?php } ?>