我正在尝试通过Wordpress上对此link的自定义字段为og:image添加开放图元数据,但它对我不起作用。这个功能正确吗?我遵循所有步骤。
PS:我不使用SEO插件
谢谢
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');