balmet.com

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

divide.php (874B)


      1 <?php
      2 /**
      3  * Redux Framework divide 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__( 'Divide', 'your-textdomain-here' ),
     15 		'id'         => 'presentation-divide',
     16 		'desc'       => esc_html__( 'The spacer to the section menu as seen to the left (after this section block) is the divide "section". Also the divider below is the divide "field".', 'your-textdomain-here' ) . '<br />' . __( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/core-fields/divide.html" target="_blank">https://devs.redux.io/core-fields/divide.html</a>',
     17 		'subsection' => true,
     18 		'fields'     => array(
     19 			array(
     20 				'id'   => 'opt-divide',
     21 				'type' => 'divide',
     22 			),
     23 		),
     24 	)
     25 );