Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created October 1, 2025 12:31
Show Gist options
  • Select an option

  • Save plugin-republic/e4dbc134b8329b71ca4c33de93b37c79 to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/e4dbc134b8329b71ca4c33de93b37c79 to your computer and use it in GitHub Desktop.
<?php
/**
* Hook: the_title.
* Modify the product name.
*/
function plugin_republic_the_title( $product_name, $product_id ) {
// Modify the $product_name here
return $product_name;
}
add_filter( 'the_title', 'plugin_republic_the_title', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment