Tagged Questions
0
votes
0answers
63 views
Call to undefined function add_menu_page() on theme activation
I am attempting to activate a theme that works perfectly on one WordPress install. I have matched the plugins installed up and copied the theme over but when I go to activate it I get...
Fatal ...
0
votes
1answer
85 views
How to make a function occurs for one time?
I have the following code in the functions.php file in my theme
function my_func(){
echo "foo";
}
add_action('admin_menu','my_func');
I assume this function "my_func" will be ...
0
votes
1answer
359 views
Two Navigation Menus in Themes Produce the same menus?
Alright so I've got two navigation menus that I've registered with my theme:
<?php
if ( function_exists('register_sidebar') )
register_sidebar();
add_theme_support( 'menus' );
if ( ...