添加信息到特定的wordpress帖子

时间:2013-10-03 23:22:26

标签: php wordpress

我需要在特定帖子上添加一些链接信息和一个简短的脚本(9597后)。我将以下代码添加到我的主题functions.php

function chromeextension_head() {
if(is_single( '9597' ))
  ?>
  <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/pknhdfeakbecfgahlbdfnjfjgbkgllfo">
        <script>
            function ExtInstall() {
                if (chrome.app.isInstalled) 
                    alert("already installed!");
                else 
                    chrome.webstore.install();
            }
        </script>
  <?php
}
add_action( 'wp_head', 'chromeextension_head' );

问题是现在代码显示在所有帖子和页面上,而不仅仅是发布在9597上。我做错了什么?

1 个答案:

答案 0 :(得分:0)

您可能希望在{}。

中添加html代码
function chromeextension_head() {
if(is_single( '9597' )){
  ?>
  <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/pknhdfeakbecfgahlbdfnjfjgbkgllfo">
        <script>
            function ExtInstall() {
                if (chrome.app.isInstalled) 
                    alert("already installed!");
                else 
                    chrome.webstore.install();
            }
        </script>
  <?php
} }
add_action( 'wp_head', 'chromeextension_head' );