Last active
August 29, 2015 14:24
-
-
Save arelthia/49f760f06549c2baaa5b to your computer and use it in GitHub Desktop.
Change the WooCommerce Product Description Heading
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
| //Change the Product description heading | |
| add_filter('woocommerce_product_description_heading', 'ps_custom_product_description_heading'); | |
| function ps_custom_product_description_heading(){ | |
| return __( 'Custom Product Description' ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment