我从get方法网址&基于此我想改变标题的元标记&图像。
<meta property="og:title" content="new title" />
<meta property="og:image" content="http://example.com/thumb.jpg" />
&#13;
我想要这个元细节&amp;删除页面的默认元数据。
答案 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" />';
}