Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save manuelhudec/618fa3cc0fce2a520d0128ce249e3620 to your computer and use it in GitHub Desktop.
Save manuelhudec/618fa3cc0fce2a520d0128ce249e3620 to your computer and use it in GitHub Desktop.
WooCommerce - Reviews as shortcode
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