%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/qendrasteps/wp-content/themes/tm-heli/inc/
Upload File :
Create Path :
Current File : /var/www/html/qendrasteps/wp-content/themes/tm-heli/inc/class-heli.php

<?php

class Heli {
	/**
	 * Top menu
	 */
	static function top_menu() {
		if ( class_exists( 'TM_Walker_Nav_Menu' ) && has_nav_menu( 'primary' ) ) {
			wp_nav_menu( array(
				'theme_location'  => 'primary',
				'menu'            => get_post_meta( get_the_ID(), "infinity_page_menu", true ),
				'menu_id'         => 'primary-menu',
				'container_class' => 'primary-menu',
				'walker'          => new TM_Walker_Nav_Menu
			) );
		} else {
			wp_nav_menu( array(
				'theme_location'  => 'primary',
				'menu'            => get_post_meta( get_the_ID(), "infinity_page_menu", true ),
				'menu_id'         => 'primary-menu',
				'container_class' => 'primary-menu'
			) );
		}
	}

	/**
	 * Mobile menu
	 */
	static function mobile_menu() {
		if ( class_exists( 'TM_Walker_Nav_Menu' ) && has_nav_menu( 'primary' ) ) {
			wp_nav_menu( array(
				'theme_location'  => 'primary',
				'menu_id'         => 'mobile-menu',
				'container_class' => 'mobile-menu',
				'walker'          => new TM_Walker_Nav_Menu
			) );
		} else {
			wp_nav_menu( array(
				'theme_location'  => 'primary',
				'menu_id'         => 'mobile-menu',
				'container_class' => 'mobile-menu'
			) );
		}
	}
}

Zerion Mini Shell 1.0