Advertisement
Guest User

Untitled

a guest
May 7th, 2020
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. function my_custom_gallery() {
  2.  
  3. query_posts(array(
  4. 'post_type' => 'galeria',
  5. 'orderby' => 'publish_date',
  6. 'order' => 'ASC'
  7.  
  8. ));
  9.  
  10.  
  11. while (have_posts()) : the_post();
  12.  
  13.  
  14.  
  15. //code for field with image ACF
  16.  
  17.  
  18. endwhile;
  19.  
  20.  
  21.  
  22. }
  23. add_shortcode('mygallery-1', 'my_custom_gallery');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement