Created
June 1, 2021 19:08
-
-
Save manuelhudec/618fa3cc0fce2a520d0128ce249e3620 to your computer and use it in GitHub Desktop.
WooCommerce - Reviews as shortcode
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_shortcode( 'wpse_comments_template', function( $atts = array(), $content = '' ) | |
{ if( is_singular() && post_type_supports( get_post_type(), 'comments' ) ) | |
{ | |
ob_start(); | |
comments_template(); | |
return ob_get_clean(); | |
} | |
return ''; | |
}, 10, 2 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment