Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <?php if ( have_posts() ) : query_posts("cat=3");
  2. while (have_posts()) : the_post(); ?>
  3. <?php the_content(); ?>
  4. <?php the_post_thumbnail(array(100, 100)); ?>
  5. <li><a href="<?php echo get_post_meta($post->ID, 'soc_url', true); ?>" target="_blank" title = "<?php the_title(); ?>"><i class="fa <?php echo get_post_meta($post->ID, 'font_awesome', true); ?>"></i></a></li>
  6. <? endwhile; endif; wp_reset_query(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement