我想在我的 Wordpress 网站上的投资组合项目中添加开放图形元标记。我正在使用 Yoast SEO 插件。
它将向帖子和页面添加开放图(fb/twitter)元标记。例如:
<meta name="description" content="Wedding Invitation Templates in Word" />
<link rel="canonical" href="https://www.temploola.com/wedding-invitation-templates/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="✩✩Free Word Templates for Wedding Invitations✩✩" />`
但它没有添加到投资组合项目中。例如:
https://www.temploola.com/wedding-invitations/item/geometric-winter-template/
任何想法添加这个。也许通过functions.php?
add_action('wp_head', 'add_one_wpseo_og', 1);
function add_one_wpseo_og() {
if ( is_mokaine_portfolio_post() ) {
add_action( 'wpseo_head', array( $GLOBALS['wpseo_og'], 'opengraph' ), 30 );
}