PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
smooth-scroll
/
dashboard
/
meta-box
<?php if ( ! function_exists( 'webon_core_add_smooth_scroll_meta_box' ) ) { /** * Function that adds general options for this module */ function webon_core_add_smooth_scroll_meta_box( $page ) { if ( $page ) { $page->add_field_element( array( 'field_type' => 'select', 'name' => 'qodef_enable_smooth_scroll', 'title' => esc_html__( 'Enable Smooth Scroll', 'webon-core' ), 'description' => esc_html__( 'Enable Smooth Scroll Effect. Disabled on Mac and Touch devices.', 'webon-core' ), 'options' => webon_core_get_select_type_options_pool( 'yes_no' ) ) ); } } add_action( 'webon_core_action_after_general_page_meta_box_map', 'webon_core_add_smooth_scroll_meta_box', 9 ); }
[+]
..
[-] smooth-scroll-meta-box.php
[edit]