gallery.php (1048B)
1 <?php 2 /** 3 * Redux Framework gallery config. 4 * For full documentation, please visit: http://devs.redux.io/ 5 * 6 * @package Redux Framework 7 */ 8 9 defined( 'ABSPATH' ) || exit; 10 11 Redux::set_section( 12 $opt_name, 13 array( 14 'title' => esc_html__( 'Gallery', 'your-textdomain-here' ), 15 'id' => 'media-gallery', 16 'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/gallery.html" target="_blank">https://devs.redux.io/core-fields/gallery.html</a>', 17 'subsection' => true, 18 'fields' => array( 19 array( 20 'id' => 'opt-gallery', 21 'type' => 'gallery', 22 'title' => esc_html__( 'Add/Edit Gallery', 'your-textdomain-here' ), 23 'subtitle' => esc_html__( 'Create a new Gallery by selecting existing or uploading new images using the WordPress native uploader', 'your-textdomain-here' ), 24 'desc' => esc_html__( 'This is the description field, again good for additional info.', 'your-textdomain-here' ), 25 ), 26 ), 27 ) 28 );