我想将以下Javascript添加到Wordpress网站。
这需要在结束Head
标记之前进入:
<SCRIPT LANGUAGE="JavaScript" SRC="http://remote.romancart.com/js/roc_button.asp?storeid=38781"></script>
这需要在结束Body
标记之前:
<script>ROC_buttonWidget('ROC_widget','38781',113,0);</script>
我相信您需要通过wp_enqueue_script
添加此内容。作为一个新手,我不知道该怎么写。有人可以帮忙吗?
由于
答案 0 :(得分:0)
查看Function reference for wp_enqueu_script。
您也可以手动添加脚本,这是一个不太推荐的选择:
从Wordpress信息中心转到外观&gt;编辑并在右侧的模板文件中选择标题模板。这将显示标题模板的代码。找到</head>
并粘贴您之前的代码(即结束标记)。
结束正文标记(</body>
)应位于页脚模板( footer.php )中。查找该模板并找到标签。然后将代码粘贴到它之前。
答案 1 :(得分:0)
<SCRIPT LANGUAGE="JavaScript" SRC="http://remote.romancart.com/js/roc_button.asp?storeid=38781"></script> add in header.php file in your theme root folder. **if file found in your theme folder**
and
<script>ROC_buttonWidget('ROC_widget','38781',113,0);</script> and this add on footer.php file on your theme folder. **if file found in your theme folder**
答案 2 :(得分:0)
function scripts_styles() {
$in_header = false;
$in_footer = true;
//在标题中添加javascript
wp_enqueue_script( 'script-id', 'http://remote.romancart.com/js/roc_button.asp?storeid=38781', array( 'jquery' ), '', $in_header );
//在页脚中添加javascript
wp_enqueue_script( 'script-id', 'http://remote.romancart.com/js/roc_button.asp?storeid=38781', array( 'jquery' ), '', $in_footer );
}
在functions.php中添加此脚本并使用action wp_enqueue_scripts
。
add_action( 'wp_enqueue_scripts', 'scripts_styles' );