要在wordpress中插入og协议,找到主题header.php文件,在<head>和</head>中添加入meta标签,并填上相应的内容

<?php if (is_single()) { ?>
<meta property="og:type" content="acticle" />
<meta property="og:title" content="<?php the_title();?>" />
<meta property="og:author" content="<?php the_author();?>" />
<meta property="og:image" content="<?php $full_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full'); echo $full_image_url[0]; ?>" />
<meta property="og:site_name" content="<?php bloginfo('name'); ?>" /> 
<meta property="og:description" content="<?php $body=mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 200,); echo str_replace(array("\r\n","\r","\n"," ")," ",$body);?>" />
<meta property="og:url" content="<?php the_permalink() ?>" />
<meta property="og:release_date" content="<?php the_time('Y年m月d日 h:i');?>" />
<?php } ?>

因为og标签主页无效,所以增加一个PHP判断,仅在内容页生效

Meta Property=og主要标签属性

og:title 标题

og:type 类型(常用值:article book movie)

og:image 略缩图地址

og:author 作者名称

og:url 页面地址

og:release_date 发布时间

og:description 页面的简单描述

og:site_name 页面所在网站名

og:videosrc 视频或者Flash地址

og:audiosrc 音频地址

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。[本站由 WEEX唯客交易所(官网www.weex.com,备用域名www.weex.sh)提供赞助]