2017-09-27 65 views
-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' 
)); 

,但我知道,这是行不通的。

回答

0

请澄清一下您的问题。目前尚不清楚你的问题是什么?

要尝试在黑暗中拍摄:

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); 

     $additional_atts = array(
      'order'  => 'ASC', 
      'size'  => 'full', 
      'link'  => 'none' 
     );    
     $atts = array_merge($atts, $additional_atts); 

     echo gallery_shortcode($atts); 
    } 
} 
+0

谢谢,非常感谢) – BrooonS