Created
September 6, 2017 07:41
-
-
Save cryptexvinci/3f7ff3f4458836eb7cb0e3060ba4376f to your computer and use it in GitHub Desktop.
Change storefront featured product section title
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
add_filter( 'storefront_featured_products_args', 'custom_storefront_product_featured_title'); | |
// Frontpage Featured Products Title | |
function custom_storefront_product_featured_title( $args ) { | |
$args['title'] = __( 'New Featured Products Title Here', 'storefront' ); | |
return $args; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment