Created
December 30, 2025 08:18
-
-
Save aimahdi/e62252e85bcc12adf10953c2696941a4 to your computer and use it in GitHub Desktop.
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 | |
| add_filter( 'taxonomy_labels_product-categories', function( $labels ) { | |
| $labels->name = 'FluentCartProduct Categories'; | |
| $labels->singular_name = 'FluentCartProduct Category'; | |
| $labels->menu_name = 'FluentCartProduct Categories'; | |
| $labels->all_items = 'All FluentCartProduct Categories'; | |
| $labels->edit_item = 'Edit FluentCartProduct Category'; | |
| $labels->add_new_item = 'Add New FluentCartProduct Category'; | |
| return $labels; | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment