Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Last active April 4, 2016 04:18
Show Gist options
  • Save SeanChDavis/5e6982b9475bf6a90a9ca24d353cd783 to your computer and use it in GitHub Desktop.
Save SeanChDavis/5e6982b9475bf6a90a9ca24d353cd783 to your computer and use it in GitHub Desktop.
FES Edit Dashboard Products Tab
<?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