New additional tab in my account
-
Hi,
I’m trying to create a new tab in my account but I don’t get it.
That’s what I’m doing.add_filter( ‘user_registration_account_menu_items’, ‘ur_custom_menu_items’, 10, 1 );
function ur_custom_menu_items( $items ) {
$items[‘prueba-item’] = __( ‘Pruebas’, ‘user-prueba ‘ );
return $items;
}add_action (‘init’, ‘user_ prueba _my_account’);
function user_ prueba _my_account(){
add_rewrite_endpoint(‘ prueba -item’, EP_PAGES);
}function user_ prueba _my_account_content(){
echo ‘hello world’;
}add_action (‘user_prueba_my_account’, ‘user_prueba_my_account_content’);
Whats wrong??
Thanks!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘New additional tab in my account’ is closed to new replies.