Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

count posts

// Add Shortcode
function count_posttypes( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'posttype' => '',
		),
		$atts,
		'postcount'
	);

}
add_shortcode( 'postcount', 'count_posttypes' );