如果页面中使用了快捷代码,则在页脚中添加JavaScript 时间:2015-06-23 作者:Mitul 如果短代码用于页面内容,我想向页面页脚添加javascript。add_shortcode(\'show-popup\', \'show_aip_popup\'); function show_aip_popup($args){ // HTML Comes here for popup } 2 个回复 最合适的回答,由SO网友:Anam Shah 整理而成 请试试这个function show_aip_popup($args){ wp_enqueue_script( \'parent-stylesheet\', \'javascript file\', false ); //your code for show shortcode data } SO网友:Mitul 谢谢你的帮助我在google上搜索了一下,最后得到了ans,我只在shortcode函数中添加了一行代码,得到了ans。我在shortcode函数中添加了以下行。wp_enqueue_script( \'parent-stylesheet\', \'[js URL]\' . $postId, false ); 结束 文章导航