Skip to content

Instantly share code, notes, and snippets.

@aimahdi
Created December 30, 2025 08:18
Show Gist options
  • Select an option

  • Save aimahdi/e62252e85bcc12adf10953c2696941a4 to your computer and use it in GitHub Desktop.

Select an option

Save aimahdi/e62252e85bcc12adf10953c2696941a4 to your computer and use it in GitHub Desktop.
<?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