Advertisement
Udoro

ACF gallery support snippet

Sep 25th, 2022
1,030
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 1 0
  1. add_filter( 'bricks/posts/query_vars', function( $query_vars, $settings, $element_id ) {
  2. // Adjust the element ID based on your the Query Loop element
  3. if ( $element_id == 'eqkhfq' ) {
  4. $query_vars['post__in'] = \Bricks\Integrations\Dynamic_Data\Providers::render_tag( '{acf_product_gallery}', get_the_ID(), 'image' );
  5. }
  6.  
  7. if ( $element_id == 'zkrjhq' ) {
  8. $query_vars['post__in'] = \Bricks\Integrations\Dynamic_Data\Providers::render_tag( '{acf_product_gallery}', get_the_ID(), 'image' );
  9. }
  10.  
  11.  
  12. return $query_vars;
  13. }, 10, 3 );
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement