Wordpress:如何为“ print_media_templates”操作添加jQuery脚本?

时间:2019-03-02 18:51:04

标签: wordpress

我正在尝试使用b-a+1过滤器添加jQuery脚本。我要做的是从Wordpress Gallery设置的“列”菜单中删除一些选项标签。所以我正在尝试:

print_media_templates

和脚本

do_action( 'print_media_templates');
function gallery_script() { 
    wp_enqueue_script('admin-script', get_stylesheet_directory_uri() . '/js/admin.js', array());
};
add_action( 'print_media_templates', 'gallery_script', 10, 1 );

但是什么也没发生。我想念什么?

脚本可以正常运行,我在其他管理元素上对其进行了测试。

0 个答案:

没有答案