Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Citations Shorcode

// Add Shortcode
function tcc_citations_shortcode( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'nb' => '3',
		),
		$atts,
		'tcc_citations'
	);

}
add_shortcode( 'tcc_citations', 'tcc_citations_shortcode' );