Skip to content

Instantly share code, notes, and snippets.

@goliver79
Created February 5, 2014 14:01
Show Gist options
  • Save goliver79/8824151 to your computer and use it in GitHub Desktop.
Save goliver79/8824151 to your computer and use it in GitHub Desktop.
[WOOCOMMERCE] Change "Random Products" Widget Title
<?php
/*
* Change "Random Products" widget title
*/
add_filter( 'widget_title', 'woo_widget_title', 10, 3);
function woo_widget_title( $title, $instance, $id_base ) {
if( 'woocommerce_random_products' == $id_base) {
return __( "My New SuperTitle", 'my_text_domain' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment