Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created November 27, 2023 08:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/264d4cfa155f9755cf63ebddc27719b4 to your computer and use it in GitHub Desktop.
Save plugin-republic/264d4cfa155f9755cf63ebddc27719b4 to your computer and use it in GitHub Desktop.
<?php
/**
* Filter the 'Product tags' placeholder
*/
function prefix_ptuwc_taxonomy_label( $label, $filterable_column ) {
if( $filterable_column == 'product_tag' ) {
$label = 'My new placeholder';
}
return $label;
}
add_filter( 'ptuwc_placeholder_label', 'prefix_ptuwc_taxonomy_label', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment