Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

PWP Review Shortcode

// Add Shortcode
function purewp_review_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'id' => '',
		),
		$atts,
		'purewp_review'
	);

	if ( $id != '' || empty($id)){
	    
	}

}
add_shortcode( 'purewp_review', 'purewp_review_shortcode' );