Last active
July 13, 2021 19:55
-
-
Save radosek/5fb0270ddb65110c9719819c625970c3 to your computer and use it in GitHub Desktop.
MetaBox Gallery Slider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // ! DONT COPY THIS LINE | |
add_filter( 'rwmb_meta_boxes', 'oxyninja_mb_slider_gallery' ); | |
function oxyninja_mb_slider_gallery( $meta_boxes ) { | |
$meta_boxes[] = [ | |
'title' => esc_html__( 'Gallery Slider', 'oxy-ninja' ), | |
'post_types' => ['post', 'page', 'product'], | |
'context' => 'normal', | |
'fields' => [ | |
[ | |
'type' => 'image_advanced', | |
'id' => 'on_mb_gallery', | |
], | |
], | |
]; | |
return $meta_boxes; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment