要在结束Body标签之前添加标签,我应该去哪里?

时间:2017-11-11 作者:lynn

我需要为一篇文章禁用富PIN,并被告知“在结束正文标记之前,将此标记添加到页面的标题。

“”

我具体在哪里访问它来添加标签?

提前谢谢。

1 个回复
SO网友:Adam

似乎你需要在你的<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 如果要将此限制为仅一篇文章,请使用条件模板标记。

结束

相关推荐

Custom css code in wordpress

有人能帮我写几行css代码吗?我想在我的页面上搜索我的部分:http://www.virtual-forms.com/docs/看起来像这样:https://docs.wedevs.com/我想更改这3个元素(搜索字段(文本框)、在文档中搜索(组合框)和搜索提交(按钮))。首先以内联方式对齐,然后更改外观,使其与另一页上的外观相似。谢谢Davor