Last active
January 17, 2021 19:33
-
-
Save FrancoStino/8824cd2c133ca11b4ef14e32a9b7f88f to your computer and use it in GitHub Desktop.
Show Description When Short Description Empty - WooCommerce
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
<? | |
/** | |
* @snippet Show Description When Short Description Empty - WooCommerce | |
*/ | |
add_action( 'woocommerce_single_product_summary', 'bbloomer_echo_short_desc_if_empty', 21 ); | |
remove_filter( 'the_excerpt', 'bbloomer_echo_short_desc_if_empty' ); | |
/*add_filter( 'the_excerpt', 'bbloomer_echo_short_desc_if_empty' );*/ | |
function bbloomer_echo_short_desc_if_empty() { | |
global $post; | |
if ( empty ( $post->post_excerpt ) ) { | |
the_content(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment