PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
smooth-scroll
/
dashboard
/
admin
<?php if ( ! function_exists( 'webon_core_add_smooth_scroll_options' ) ) { /** * Function that adds general options for this module */ function webon_core_add_smooth_scroll_options( $page ) { if ( $page ) { $page->add_field_element( array( 'field_type' => 'yesno', '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' ), 'default_value' => 'no' ) ); } } add_action( 'webon_core_action_after_general_options_map', 'webon_core_add_smooth_scroll_options' ); }
[+]
..
[-] smooth-scroll-options.php
[edit]