I have added the shorctcode for acf_gallery to my Pro child theme, yet it is not displaying.
I also wish to add an acf_image shortcode, but am at a loss as the code provided on this forum (see below), is not displaying my gallery.
Please advise what I have done wrong… with recommendation/solution to my newbie question
// ACF Gallery Shortcode
// =============================================================================
add_shortcode(‘display_acf_gallery’, ‘acf_gallery’);
function acf_gallery ( $atts ) {
if ( empty ( $atts[‘name’] ) ) return “”;
$images = get_field( $atts[‘name’] );
if( $images ): ?>