Skip to content

Instantly share code, notes, and snippets.

@farookibrahim
Created July 28, 2020 05:14
Show Gist options
  • Save farookibrahim/43cbc7a4abe160b512859159e6a9ca82 to your computer and use it in GitHub Desktop.
Save farookibrahim/43cbc7a4abe160b512859159e6a9ca82 to your computer and use it in GitHub Desktop.
Cartzilla - WC My Account Page Custom Menu Items
if ( ! function_exists( 'cz_child_custom_my_account_tab' ) ) {
function cz_child_custom_my_account_tab( $items ) {
$items['custom-tab'] = 'Custom Tab Title';
return $items;
}
}
add_filter( 'woocommerce_account_menu_items', 'cz_child_custom_my_account_tab', 99 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment