PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
plugins
/
webon-core
/
inc
/
mobile-header
/
layouts
/
side-area
<?php if ( ! function_exists( 'webon_core_add_side_area_mobile_header_global_option' ) ) { /** * This function set header type value for global header option map */ function webon_core_add_side_area_mobile_header_global_option( $header_layout_options ) { $header_layout_options['side-area'] = array( 'image' => WEBON_CORE_MOBILE_HEADER_LAYOUTS_URL_PATH . '/side-area/assets/img/side-area-header.png', 'label' => esc_html__( 'Side Area', 'webon-core' ) ); return $header_layout_options; } add_filter( 'webon_core_filter_mobile_header_layout_option', 'webon_core_add_side_area_mobile_header_global_option' ); } if ( ! function_exists( 'webon_core_register_side_area_mobile_header_layout' ) ) { /** * This function add header layout into global options list * * @param array $mobile_header_layouts * * @return array */ function webon_core_register_side_area_mobile_header_layout( $mobile_header_layouts ) { $mobile_header_layouts['side-area'] = 'SideAreaMobileHeader'; return $mobile_header_layouts; } add_filter( 'webon_core_filter_register_mobile_header_layouts', 'webon_core_register_side_area_mobile_header_layout'); }
[+]
..
[+]
templates
[-] side-area-mobile-header.php
[edit]
[-] include.php
[edit]
[+]
assets
[-] helper.php
[edit]
[+]
dashboard