Guest User

Untitled

a guest
Jun 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php $posts = get_posts('showposts=1&cat=-3'); foreach($posts as $post) : $post_id = $post->ID; ?>
  2. <li>
  3. <p><a class="active" <?php /*href="<?php the_permalink(); ?>"*/ ?> ><?php the_title(); ?></a></p>
  4. <div class="<?php echo $post_id; ?>">
  5. <?php the_content(); ?>
  6. </div>
  7. </li>
  8. <?php endforeach; ?>
Add Comment
Please, Sign In to add comment