Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在我的 wordpress 网站的一个站点上插入 javascript?我读到,它可以用函数来完成add_action('wp_head', 'function'); 但不知何故这对我不起作用。
add_action('wp_head', 'function');
谢谢你的帮助!phpheini
在您的 functions.php 文件(在您的主题中)中创建一个函数,然后添加。例如,
function my_custom_javascript{ print("<script language = 'javascript'>alert('trying my javascript alerts');</script>"); ) add_action('wp_head', 'my_custom_javascript');