Last active
April 4, 2016 04:18
-
-
Save SeanChDavis/5e6982b9475bf6a90a9ca24d353cd783 to your computer and use it in GitHub Desktop.
FES Edit Dashboard Products Tab
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
<?php // DO NOT COPY THIS LINE | |
function sd_vendor_dashboard_menu_products( $menu_items ) { | |
$menu_items['my_products']['name'] = 'My ' . EDD_FES()->helper->get_product_constant_name( $plural = true, $uppercase = true ); | |
return $menu_items; | |
} | |
add_filter( 'fes_vendor_dashboard_menu', 'sd_vendor_dashboard_menu_products' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment