Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. add_filter('et_pb_module_shortcode_attributes', 'galleria_divi_acf', 20, 3);
  2. function galleria_divi_acf($props, $atts, $slug) {
  3. $gallery_module_slugs = array('et_pb_gallery');
  4. if (!in_array($slug, $gallery_module_slugs)) {
  5. return $props;
  6. }
  7. if is_singular( 'struttura' ) {
  8. $props['gallery_ids'] = get_field('galleria_struttura', false, false);
  9. return $props;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement