can't modify menus
-
when trying to add login log out button to the main menu it does not work in this theme but has no problem in others that I use
this is the way I added the buttons:
add_filter( ‘wp_nav_menu_items’, ‘add_loginout_link’, 10, 2 );
function add_loginout_link( $items, $args ) {
if (is_user_logged_in() && $args->theme_location == ‘primary’) {
$items .= ‘
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘can't modify menus’ is closed to new replies.