如何编辑单个页面/帖子的<head>代码?

时间:2016-04-15 作者:Tarek Hossain Dinaji

我想运行一个JavaScript 我想在<head></head> 标签

我不想将其添加到文本视图区域。

如何将此代码片段添加到单个帖子中(我的意思是不编辑headers.php)?

1 个回复
SO网友:TomC

您希望使用如下方式连接到头代码:

add_action(\'wp_head\',\'hook_javascript\');

function hook_javascript() {
    if (is_single(\'123\')) { 
        $output="<script> enter your script here </script>";
        echo $output;
    }
}
此处提供更多信息:https://codex.wordpress.org/Plugin_API/Action_Reference/wp_head

相关推荐

ADD_THEME_SUPPORT(‘CUSTOM-HEADER’)不在仪表板中添加选项菜单

我正在根据工具箱主题从头开始写一个新主题。我的WP安装是开箱即用的。我添加了add\\u theme\\u支持(“custom-header”);我的职能。php文件,但“标题”选项屏幕不会显示在仪表板中。如果我访问该站点,我可以在顶部的工具栏中看到它,但不能在仪表板中看到它。我错过什么了吗?