为特定页面指定og:image

时间:2018-10-16 04:24:05

标签: php wordpress

我正在尝试通过Wordpress上对此link的自定义字段为og:image添加开放图元数据,但它对我不起作用。这个功能正确吗?我遵循所有步骤。

PS:我不使用SEO插件

谢谢

Custom field

function insert_og_image() {

if(get_post_meta(get_the_ID(), 'og_image', true) && is_single()) {
$output = '<meta property="og:image" content="'. get_post_meta(get_the_ID(), 'og_image', true) .'" />';
}

echo $output;
}
add_action('wp_head','insert_og_image');

0 个答案:

没有答案