PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
general
/
dashboard
/
meta-box
<?php if ( ! function_exists( 'webon_core_add_general_meta_box' ) ) { /** * Function that add general options for this module */ function webon_core_add_general_meta_box() { $qode_framework = qode_framework_get_framework_root(); $page = $qode_framework->add_options_page( array( 'scope' => apply_filters( 'webon_core_filter_general_meta_box_scope', array( 'post', 'page' ) ), 'type' => 'meta', 'slug' => 'general', 'title' => esc_html__( 'WebOn Settings', 'webon-core' ), 'layout' => 'tabbed' ) ); if ( $page ) { // Hook to include additional options after module options do_action( 'webon_core_action_after_general_meta_box_map', $page ); } } add_action( 'webon_core_action_default_meta_boxes_init', 'webon_core_add_general_meta_box' ); }
[+]
..
[-] general-meta-box.php
[edit]
[-] page-meta-box.php
[edit]