Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

pixelea_shortcode_show_galerie

permet d’afficher une galerie acf

// Add Shortcode
function show_acf_galerie( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'type' => 'normal',
			'charger_js' => 'true',
			'charger_css' => 'true',
		),
		$atts,
		''
	);

	return 'Shortcode enable';

}
add_shortcode( 'show_acf_galerie', 'show_acf_galerie' );