在wordpress中编辑元标记

时间:2017-09-05 12:43:16

标签: wordpress

我从get方法网址&基于此我想改变标题的元标记&图像。



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

我想要这个元细节&amp;删除页面的默认元数据。

1 个答案:

答案 0 :(得分: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" />';
}