我需要在特定帖子上添加一些链接信息和一个简短的脚本(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上。我做错了什么?
答案 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' );