Advertisement
pusatdata

WP Plugin: Advanced Custom Field in LOOP

May 8th, 2016
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. <?php
  2. global $wp_query;
  3. $postid = $wp_query->post->ID;
  4. echo get_post_meta($postid, 'Your-Custom-Field', true);
  5. wp_reset_query();
  6. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement