如果是page
全球post
对象已设置为wp_head
火灾。但您必须使用自定义代码获取此页面的数据。
伪代码:
add_action ( \'wp_head\', \'wpse_58539_get_ogp\' );
function wpse_58539_get_ogp()
{
if ( ! is_page_template( \'your-template-name\' ) )
{
return;
}
$page = get_post( $GLOBALS[\'post\'] );
// Inspect the page meta data to find the taxonomy and the images.
// print the OGP data
return;
}