PATH:
home
/
lab2454c
/
fcxpro.com
/
wp-content
/
themes
/
webon
/
inc
/
mobile-header
<?php if ( ! function_exists( 'webon_load_page_mobile_header' ) ) { /** * Function which loads page template module */ function webon_load_page_mobile_header() { // Include mobile header template echo apply_filters( 'webon_filter_mobile_header_template', webon_get_template_part( 'mobile-header', 'templates/mobile-header' ) ); } add_action( 'webon_action_page_header_template', 'webon_load_page_mobile_header' ); } if ( ! function_exists( 'webon_register_mobile_navigation_menus' ) ) { /** * Function which registers navigation menus */ function webon_register_mobile_navigation_menus() { $navigation_menus = apply_filters( 'webon_filter_register_mobile_navigation_menus', array( 'mobile-navigation' => esc_html__( 'Mobile Navigation', 'webon' ) ) ); if ( ! empty( $navigation_menus ) ) { register_nav_menus( $navigation_menus ); } } add_action( 'webon_action_after_include_modules', 'webon_register_mobile_navigation_menus' ); }
[+]
..
[+]
templates
[-] include.php
[edit]
[-] helper.php
[edit]