Câu trả lời:
Nếu bạn muốn thêm nút thêm phương tiện vào bảng quản trị của mình :
Bạn cần sử dụng wp_enqueue_media ();
add_action ( 'admin_enqueue_scripts', function () {
if (is_admin ())
wp_enqueue_media ();
} );
Sau đó sử dụng js này:
jQuery(document).ready(function() {
var $ = jQuery;
if ($('.set_custom_images').length > 0) {
if ( typeof wp !== 'undefined' && wp.media && wp.media.editor) {
$('.set_custom_images').on('click', function(e) {
e.preventDefault();
var button = $(this);
var id = button.prev();
wp.media.editor.send.attachment = function(props, attachment) {
id.val(attachment.id);
};
wp.media.editor.open(button);
return false;
});
}
}
});
Sử dụng html này:
<p>
<input type="number" value="" class="regular-text process_custom_images" id="process_custom_images" name="" max="" min="1" step="1">
<button class="set_custom_images button">Set Image ID</button>
</p>
is_admin()
khi bạn sử dụng móc admin_enqueue_scripts
. Ngoài ra, tôi sẽ kiểm tra xem bạn có ở đúng trang không get_current_screen()
.
Hiển thị xem trước hình thu nhỏ thay vì số
Chỉ là một tinh chỉnh, tôi đã làm điều này ...
đã thay đổi đầu vào số thành ẩn.
thêm:
$imgid =(isset( $instance[ 'imgid' ] )) ? $instance[ 'imgid' ] : "";
$img = wp_get_attachment_image_src($imgid, 'thumbnail');
Và rồi ... phía trên trường ẩn.
if($img != "") {
?>
<img src="<?= $img[0]; ?>" width="80px" /><br />
<?php
}
Điều đó sẽ làm cho hình thu nhỏ hiển thị ở cuối người dùng thay vì số :)