我有下面的代码。我需要一个按钮,例如在管理员的编辑页面中添加媒体,单击时会显示一个弹出窗口并显示我的自定义 html,其中包含一个表单。
我在下面尝试过,但我得到了不必要的东西,比如上传文件选项卡、媒体库选项卡等,我不需要所有这些,但我只需要单击按钮上的自定义表单。
索引.php
function add_cp_media_button() {
echo '<a href="#" id="cp-forms-btn" class="button">cp Forms</a>';
}
function include_cp_media_button_js_file() {
wp_enqueue_script('media_button', plugins_url( '/js/cp.js', __FILE__ ), array('jquery'), '1.0', true);
}
add_action('wp_enqueue_media', 'include_cp_media_button_js_file');
cp.js
jQuery(function($) {
$(document).ready(function(){
$('#cp-forms-btn').click(open_media_window);
});
function open_media_window() {
//I want to display the form with select drop down with my names populated in the dropdown, after selecting the item, I need to insert the text to the editor.
}
});
有人可以帮我吗