<?php
//How to enable menu support in WordPress theme
function easy_enable_menu()
{
add_theme_support( 'menus' );
}
add_action( 'init', 'easy_enable_menu', 10 );
?>
//How to enable menu support in WordPress theme
function easy_enable_menu()
{
add_theme_support( 'menus' );
}
add_action( 'init', 'easy_enable_menu', 10 );
?>
No comments :
Post a Comment