似乎你需要在你的<head>
打开前的标签<body>
标签
将以下内容放入主题中function.php
文件:
function wpse_285611_pinterest_rich_pins() {
//change 123 to the ID of the post OR
//change 123 to the slug or title of the post
if ( is_single(123) ) {
echo \'<meta name="pinterest-rich-pin" content="false" />\';
}
}
add_action(\'wp_head\', \'wpse_285611_pinterest_rich_pins\', PHP_INT_MAX);
请参见:
https://developer.wordpress.org/reference/functions/is_single/ 有关如何使用
is_single
如果要将此限制为仅一篇文章,请使用条件模板标记。