Guest User

Untitled

a guest
Jul 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <?php $my_query = new WP_Query('posts_per_page=3');
  2. while ($my_query->have_posts()) : $my_query->the_post();
  3. $do_not_duplicate = $post->ID; ?>
  4. <div <?php post_class() ?> id="post-<?php the_ID(); ?>" style="position:relative;left:20px;padding-bottom:10px;padding-top:10px;background:transparent url(/wp-content/themes/natalie/images/divider.gif) repeat-x scroll 0 100%;width:221px;">
  5. <h3 style="font-weight:bold;font-size:12px;"><a style="text-decoration:none;" href="<?php the_syndication_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
  6. <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
  7. <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></p>
  8. </div>
  9. <?php endwhile; ?>
Add Comment
Please, Sign In to add comment