Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Manual View Counter In Loop

For Post View Counter Plugin..

// Add Shortcode
function manual_view_count_fun( $atts ) {

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

	$post_id = atts['id'];
	pvc_view_post( $post_id = 0 );  

}
add_shortcode( 'manual_view_count', 'manual_view_count_fun' );