जवाबों:
यदि आप अपने व्यवस्थापक पैनल में एक मीडिया बटन जोड़ना चाहते हैं :
आपको wp_enqueue_media () का उपयोग करने की आवश्यकता है;
add_action ( 'admin_enqueue_scripts', function () {
if (is_admin ())
wp_enqueue_media ();
} );
फिर इस js का उपयोग करें:
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;
});
}
}
});
इस HTML का उपयोग करें:
<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()
हुक का उपयोग करने के लिए कोई ज़रूरत नहीं है admin_enqueue_scripts
। इसके अलावा, यदि आप सही पृष्ठ पर हैं, तो मैं जाँच करूँगा get_current_screen()
।
var attachmentURL = wp.media.attachment(attachment.id).get("url");
। मैं इस के अंदर डालfunction(props, attachment)
संख्या के बजाय थंबनेल पूर्वावलोकन दिखाएं
बस एक ट्वीक के रूप में, मैंने यह किया ...
छिपाकर नंबर इनपुट बदल दिया।
कहा:
$imgid =(isset( $instance[ 'imgid' ] )) ? $instance[ 'imgid' ] : "";
$img = wp_get_attachment_image_src($imgid, 'thumbnail');
और फिर ... छिपे हुए मैदान के ऊपर।
if($img != "") {
?>
<img src="<?= $img[0]; ?>" width="80px" /><br />
<?php
}
यह एक नंबर के बजाय उपयोगकर्ता के अंत में दिखाई देने वाला थंबनेल बना देगा :)