您需要使用wp\\u footer操作挂钩,与此类似
add_action(\'wp_footer\', \'add_my_script\');
function add_my_script() {
?>
<script>
// your script code here
</script>
<?php
return;
}
这个钩子将钩住主题\'
wp_footer()
调用,因此它将作为主题页脚显示的一部分发生。
将此代码放入函数中。子主题的php文件。
阅读有关页脚显示方式以及如何在此处修改页脚的详细信息:https://codex.wordpress.org/Plugin_API/Action_Reference/wp_footer
Added
下面是插入到我的示例中的脚本代码。语法检查OK;我没有检查所需的操作。
add_action(\'wp_footer\', \'add_my_script\');
function add_my_script() {
?>
<script>
jQuery(document).ready(function( $ ){
// Your code in here
$( ".priceToFormat" ).each(function( ) {
$(this).formatCurrency();
}
);
$( ".numberToFormat" ).each(function( ) {
$(this).text( $(this).text().replace(/(\\d)(?=(\\d\\d\\d)+(?!\\d))/g, "$1,") );
//$(this).toNumber();
}
);
});
</script>
<?php
return;
}
(不知道为什么对我最初的答案投反对票。)