PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
back-to-top
/
dashboard
/
admin
<?php if ( ! function_exists( 'webon_core_add_back_to_top_options' ) ) { /** * Function that add general options for this module */ function webon_core_add_back_to_top_options( $page ) { if ( $page ) { $page->add_field_element( array( 'field_type' => 'yesno', 'name' => 'qodef_back_to_top', 'title' => esc_html__( 'Enable Back to Top', 'webon-core' ), 'default_value' => 'yes' ) ); } } add_action( 'webon_core_action_after_general_options_map', 'webon_core_add_back_to_top_options' ); }
[+]
..
[-] back-to-top-options.php
[edit]