在WordPress开发中,经常需要在网站页脚(footer)区域添加JavaScript代码,无论是统计代码、第三方服务还是自定义功能。以下介绍三种安全高效的方法:
通过主题的functions.php文件添加代码是最常见的方式:
function add_custom_footer_script() { echo ''; } add_action('wp_footer', 'add_custom_footer_script');
为避免主题更新丢失修改,建议使用子主题:
// 在子主题functions.php中添加 function child_theme_footer_js() { wp_enqueue_script('custom-js', get_stylesheet_directory_uri() . '/js/custom.js', array(), '1.0', true); } add_action('wp_enqueue_scripts', 'child_theme_footer_js');
对于非技术人员,推荐使用插件:
这些插件提供了可视化界面,无需修改代码文件即可安全添加JS代码。
注意事项: