-3
我不知道PHP,但我必須在其中工作。我需要添加到$attr['ids']
數組與$gallery_setting
。將數組屬性添加到implode()
function the_featured_image_gallery($atts = array()) {
$gallery_setting = get_theme_mod('featured_image_gallery');
if (is_array($gallery_setting) && ! empty($gallery_setting)) {
$atts['ids'] = implode(',', $gallery_setting);
echo gallery_shortcode($atts);
}
}
理想情況下,我想:
echo gallery_shortcode($atts, array(
'order' => 'ASC',
'size' => 'full',
'link' => 'none'
));
,但我知道,這是行不通的。
謝謝,非常感謝) – BrooonS