Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Prayers Shortcode

// Add Shortcode
function prayers_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'count' => '10',
			'start_date' => 'last month',
			'end_date' => 'today',
		), $atts )
	);
}
add_shortcode( 'prayers', 'prayers_shortcode' );