如果页面中使用了快捷代码,则在页脚中添加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 );

结束

相关推荐

Specific loop in Shortcode

我在做短码,我被困在这里了。以下是代码:add_shortcode(\'service-shortcode\', \'service_shortcode\'); function service_shortcode($atts) { extract( shortcode_atts( array( \'title\' => \'Service One\', \'icon\' => \'fa-briefcase\'