Sonunda elde etmek istediğim, Görüntü <img>
Etiketi kutusuna eklenen ve görüntü etiketinde data-*
öznitelikler olarak saklanacak ekstra ayarlar.
Misal: <img src="..." data-my_setting="...">
KODUM
Bir eklenti oluşturuyorum ve görüntüleri düzenlerken daha fazla ayar oluşturmam gerekiyor. Şimdiye kadar aşağıdaki kod var:
jQuery(function($) {
var imageDetails = wp.media.view.ImageDetails
wp.media.view.ImageDetails = wp.media.view.ImageDetails.extend({
// Initialize - Call function to add settings when rendered
initialize: function() {
this.on('post-render', this.add_settings);
},
// To add the Settings
add_settings: function() {
$('.advanced-section').prepend('\
<h2>My Settings</h2>\
<input type="text" class="my_setting">\
');
// Set Options
this.controller.image.set({"data-settings": 'setting-value-here'})
}
});
}) // End of jQuery(function($))
Yeni bir yazı oluşturdum ve bir resim ekledim, üzerine tıkladım ve Düzenle'ye (açılan araç çubuğundaki kurşun kalem simgesi) bastım. Resim ayrıntıları sayfasında sonlandırdım ve şöyle görünüyordu:
Çok uzak çok iyi. Bu hatta:
this.controller.image.set({"data-settings": 'setting-value-here'})
Normalde giriş değerini almak için jQuery kullanır, ancak test amacıyla statik bir değer olarak değiştirdim 'setting-value-here'
. Görüntü Ayrıntıları kutusunun sağ alt köşesinde 'Güncelle' düğmesine bastım.
SORUN
Metin düzenleyicide HTML kodunu şu şekilde gösterir:
Bu vermez bir var data-settings="setting-value-here"
, nasıl oluyor?
Çizgiyi bununla değiştirirsem:
this.controller.image.set({alt: 'setting-value-here'})
Bu does değiştirmek ALT etiketi alt="setting-value-here"
. Peki data- * özniteliğini ayarlamaya çalışırken ne yapıyorum?
ÇÖZÜM
Sayesinde @bonger (50 İtibar dolu ödül aldık), Aşağıdaki kod var:
PHP:
function add_my_settings() {
ob_start();
wp_print_media_templates();
$tpl = ob_get_clean();
if ( ( $idx = strpos( $tpl, 'tmpl-image-details' ) ) !== false
&& ( $before_idx = strpos( $tpl, '<div class="advanced-section">', $idx ) ) !== false ) {
ob_start();
?>
<div class="my_setting-section">
<h2><?php _e( 'My Settings' ); ?></h2>
<div class="my_setting">
<label class="setting my_setting">
<span><?php _e( 'My Setting' ); ?></span>
<input type="text" data-setting="my_setting" value="{{ data.model.my_setting }}" />
</label>
</div>
</div>
<?php
$my_section = ob_get_clean();
$tpl = substr_replace( $tpl, $my_section, $before_idx, 0 );
}
echo $tpl;
};
// Hack the output of wp_print_media_templates()
add_action('wp_enqueue_media', $func =
function() {
remove_action('admin_footer', 'wp_print_media_templates');
add_action('admin_footer', 'add_my_settings');
}
);
JavaScript: (Kullanarak sıkılması gerekir wp_enqueue_script()
)
// When Image is Edited
wp.media.events.on('editor:image-edit', function(data) {
data.metadata.my_setting = data.editor.dom.getAttrib( data.image, 'data-my_setting' );
});
// When Image is Updated
wp.media.events.on('editor:image-update', function(data) {
data.editor.dom.setAttrib( data.image, 'data-my_setting', data.metadata.my_setting );
});