Hi, I want to add a user name to the top menu, using function:
add_filter ('wp_nav_menu', 'do_menu_shortcodes');
function do_menu_shortcodes ($menu) {
return do_shortcode ($menu);
}
add_shortcode ('current-username', 'username_on_menu');
function username_on_menu () {
$user = wp_get_current_user ();
$user-return> user_login;
}
But the short-code [current-username] doesn't work. In standard subjects (Twenty Sixteen) this function works. How to make that in the subject TemplateToaster 6 too worked? Thanks