WordPress không làm cho nó rất dễ dàng để sửa đổi các khía cạnh của shortcode bộ sưu tập . Một số phân bổ:
Tùy chọn khác ngoài birgires (theo như tôi biết) là xây dựng lại khá nhiều shortcode bằng cách sao chép mã hiện có của tập tin media.php .
Một số điều cần lưu ý về additional_gallery_settings()
chức năng ban đầu , từ peterbra :
- Các
tmpl-
tiền tố là bắt buộc.
- Trường của bạn nên có một
data-setting
thuộc tính
Chỉ cần ném mã sau vào functions.php
tệp của bạn :
/**
* Set up the new field in the media module.
*
* @return void
*/
function additional_gallery_settings() {
?>
<script type="text/html" id="tmpl-custom-gallery-setting">
<span>Style</span>
<select data-setting="style">
<option value="default-style">Default Style</option>
<option value="custom-style">Custom Style</option>
<option value="ie7-style">IE7 Style</option>
</select>
</script>
<script type="text/javascript">
jQuery( document ).ready( function() {
_.extend( wp.media.gallery.defaults, {
style: 'default-style'
} );
wp.media.view.Settings.Gallery = wp.media.view.Settings.Gallery.extend( {
template: function( view ) {
return wp.media.template( 'gallery-settings' )( view )
+ wp.media.template( 'custom-gallery-setting' )( view );
}
} );
} );
</script>
<?php
}
add_action( 'print_media_templates', 'additional_gallery_settings' );
/**
* HTML Wrapper - Support for a custom class attribute in the native gallery shortcode
*
* @param string $html
* @param array $attr
* @param int $instance
*
* @return $html
*/
function customize_gallery_abit( $html, $attr, $instance ) {
if( isset( $attr['style'] ) && $style = $attr['style'] ) {
// Unset attribute to avoid infinite recursive loops
unset( $attr['style'] );
// Our custom HTML wrapper
$html = sprintf(
'<div class="wpse-gallery-wrapper-%s">%s</div>',
esc_attr( $style ),
gallery_shortcode( $attr )
);
}
return $html;
}
add_filter( 'post_gallery', 'customize_gallery_abit', 10, 3 );