0
我試圖將附件添加到沒有編輯器支持(僅摘錄)的自定義帖子類型。將媒體附加到沒有編輯器支持的帖子類型
我已經設法顯示媒體管理器對話框,但我只能看到「插入到發佈」按鈕(反正什麼都不做),上傳圖片時,他們不會附加到帖子。
要實現我做了什麼,到目前爲止,我添加了一個非常簡單的meta框的帖子類型:
function add_gallery_post_media_meta_box()
{
add_meta_box(
'gallery_post_media',
'Gallery Media',
'gallery_post_media',
'gallery',
'side',
'high'
);
} // add_file_meta_box
add_action('add_meta_boxes', 'add_gallery_post_media_meta_box');
function gallery_post_media()
{
echo '<a href="#" id="gallery-add-media" title="' . __('Add media') .'">' . __('Add media') .'</a>';
} // end post_media
function register_admin_scripts() {
wp_enqueue_media();
wp_register_script('gallery_post_media_admin_script', get_template_directory_uri() . '/library/cpt/gallery.js');
wp_enqueue_script('gallery_post_media_admin_script');
} // end register_scripts
add_action('admin_enqueue_scripts', 'register_admin_scripts');
和腳本:
jQuery(document).ready(function ($) {
$('#gallery-add-media').click(function (e) {
var send_attachment_bkp = wp.media.editor.send.attachment;
var button = $(this);
var id = button.attr('id').replace('_button', '');
wp.media.editor.send.attachment = function (props, attachment) {
$("#" + id).val(attachment.url);
wp.media.editor.send.attachment = send_attachment_bkp;
}
wp.media.editor.open(button);
event.preventDefault();
return false;
});
});
如果我能找到一些關於wp.media.editor.send.attachment
的文檔,我可能會設法得到我想要的,但我找不到任何有用的東西。 我發現的唯一解決方案都依賴於自定義字段,而不是僅僅將這些圖像附加到帖子中,而不將它們插入到帖子內容中,就像我使用普通帖子那樣。
作爲一個側面的問題:是否可以告訴媒體管理器只接受圖像?