Created
July 28, 2020 05:14
-
-
Save farookibrahim/43cbc7a4abe160b512859159e6a9ca82 to your computer and use it in GitHub Desktop.
Cartzilla - WC My Account Page Custom Menu Items
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
https://drive.google.com/file/d/1-rOxmrb3c7fa9zduoNE-8Jhhzm1vkdEq/view