PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
404
/
dashboard
/
admin
<?php if ( ! function_exists( 'webon_core_add_404_page_options' ) ) { /** * Function that add general options for this module */ function webon_core_add_404_page_options() { $qode_framework = qode_framework_get_framework_root(); $page = $qode_framework->add_options_page( array( 'scope' => WEBON_CORE_OPTIONS_NAME, 'type' => 'admin', 'slug' => '404', 'icon' => 'fa fa-book', 'title' => esc_html__( '404', 'webon-core' ), 'description' => esc_html__( 'Global 404 Page Options', 'webon-core' ) ) ); if ( $page ) { $page->add_field_element( array( 'field_type' => 'yesno', 'name' => 'qodef_enable_404_page_title', 'title' => esc_html__( 'Enable Page Title', 'webon-core' ), 'description' => esc_html__( 'Use this option to enable/disable page title on 404 page', 'webon-core' ), 'default_value' => 'no' ) ); $page->add_field_element( array( 'field_type' => 'yesno', 'name' => 'qodef_enable_404_page_footer', 'title' => esc_html__( 'Enable Page Footer', 'webon-core' ), 'description' => esc_html__( 'Use this option to enable/disable page footer on 404 page', 'webon-core' ), 'default_value' => 'yes' ) ); $page->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_404_page_background_color', 'title' => esc_html__( 'Background Color', 'webon-core' ), 'description' => esc_html__( 'Enter 404 page area background color', 'webon-core' ) ) ); $page->add_field_element( array( 'field_type' => 'image', 'name' => 'qodef_404_page_background_image', 'title' => esc_html__( 'Background Image', 'webon-core' ), 'description' => esc_html__( 'Enter 404 page area background image', 'webon-core' ) ) ); $page->add_field_element( array( 'field_type' => 'image', 'name' => 'qodef_404_page_image', 'title' => esc_html__( 'Image', 'webon-core' ), 'description' => esc_html__( 'Enter 404 page area image', 'webon-core' ) ) ); $page->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_404_page_tagline', 'title' => esc_html__( 'Tagline Label', 'webon-core' ) ) ); $page->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_404_page_tagline_color', 'title' => esc_html__( 'Tagline Color', 'webon-core' ) ) ); $page->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_404_page_title', 'title' => esc_html__( 'Title Label', 'webon-core' ) ) ); $page->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_404_page_title_color', 'title' => esc_html__( 'Title Color', 'webon-core' ) ) ); $page->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_404_page_text', 'title' => esc_html__( 'Text Label', 'webon-core' ) ) ); $page->add_field_element( array( 'field_type' => 'color', 'name' => 'qodef_404_page_text_color', 'title' => esc_html__( 'Text Color', 'webon-core' ) ) ); $page->add_field_element( array( 'field_type' => 'text', 'name' => 'qodef_404_page_button_text', 'title' => esc_html__( 'Button Text', 'webon-core' ) ) ); // Hook to include additional options after module options do_action( 'webon_core_action_after_404_page_options_map', $page ); } } add_action( 'webon_core_action_default_options_init', 'webon_core_add_404_page_options', webon_core_get_admin_options_map_position( '404' ) ); }
[+]
..
[-] 404-options.php
[edit]