search.php (919B)
1 <?php 2 /** 3 * Redux Pro Search Sample config. 4 * 5 * For full documentation, please visit: http:https://devs.redux.io/ 6 * 7 * @package Redux Pro 8 */ 9 10 defined( 'ABSPATH' ) || exit; 11 12 // --> Below this line not needed. This is just for demonstration purposes. 13 Redux::set_section( 14 $opt_name, 15 array( 16 'title' => esc_html__( 'Live Search', 'your-textdomain-here' ), 17 // phpcs:ignore 18 // 'desc' => esc_html__( 'For full documentation on this field, visit: ', 'your-textdomain-here' ) . '<a href="https://devs.redux.io/extensions/live-search.html" target="_blank">https://devs.redux.io/extensions/live-search.html</a>', 19 'heading' => esc_html__( 'This extension is a drop-in utility. Try the search box to the top right of every panel or metabox section. It will dynamically filter out the visible fields to match your search.', 'your-textdomain-here' ), 20 'subsection' => true, 21 'customizer' => false, 22 ) 23 );