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' );
// Add Shortcode
function tcc_citations_shortcode( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
'nb' => '3',
),
$atts,
'tcc_citations'
);
}
add_shortcode( 'tcc_citations', 'tcc_citations_shortcode' );