首页 文章

在wordpress中编辑元标记

提问于
浏览
0

我从get方法URL接收数据并基于我想要更改 Headers 和图像的元标记 .

<meta property="og:title" content="new title" />
<meta property="og:image" content="http://example.com/thumb.jpg" />

我想要这个元细节并删除页面的默认元数据 .

1 回答

  • 1

    使用下面的钩子和函数来删除元标记 .

    add_action( 'wp_head', 'insert_in_head', 11 ); 
    function insert_in_head(){
     echo '<meta property="og:title" content="new title tag" />';
     echo '<meta property="og:image" content="http://example.com/big.jpg" />';
    }
    

相关问题