Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Author Post Count

Get the number of posts written by

// Add Shortcode
function get_author_post_count( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'author_id' => '1',
		),
		$atts,
		'author_post_count'
	);

	// Add Shortcode
	function get_author_post_count( $atts ) {
	
		// Attributes
		$atts = shortcode_atts(
			array(
				'author_id' => '1',
			),
			$atts,
			'author_post_count'
		);
	
			return count_user_posts( $atts['author_id'] );
		
	
	}
	add_shortcode( 'author_post_count', 'get_author_post_count' );

}
add_shortcode( 'author_post_count', 'get_author_post_count' );