所以我不想包括get_header()
或get_footer()
标记是因为此页面将使用thickbox模式插件作为iframe加载,其内容将是一个表单,我不希望上述标记呈现所有菜单、横幅图像和菜单以及页脚内容,因为这将导致此页面上的大量滚动。
然而,当前我运行的是这样的:
add_action(\'template_redirect\', \'my_plugin_add_js\');
然而,当我取出
get_header()
和
get_footer
()标记,则JavaScript不会加载,即使\'
my_plugin_add_js
\' 在末尾的body HTML标记中添加,而不是在head标记中添加,如下所示:
wp_register_script("validate_form", plugins_url(\'js/my_plugin_validate_form.js\', __FILE__), array(\'jquery\', \'validation\'), \'1.0\', true);
因此,我推测“template\\u redirect”操作挂钩不适合使用。