Guest User

Untitled

a guest
Feb 20th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. <?php
  2. get_header();
  3. ?>
  4.             <div class="post">
  5.             <?php if (have_posts()) : ?><?php while (have_posts()) : the_post(); ?>
  6.                 <div class="post">
  7.                     <div class="postTitle">
  8.                     <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
  9.                     <span class="info">Írta: <?php the_author(); ?> | <?php the_time('Y.m.d'); ?></span>
  10.                     </div>
  11.                     <?php the_content("<br /><br />" . "Bővebben:&nbsp;" . """ . the_title('', '', false) . """); ?>
  12.                 </div>
  13.             <?php endwhile; ?>
  14.             <div class="post_nav"><?php posts_nav_link(); ?></div>
  15.             <?php else: ?>
  16.             <div class="post">
  17.                 Sajnálom ez a bejegyzés törölve lett...
  18.             </div>
  19.             <?php endif; ?>
  20.             </div>
  21. <?php
  22. get_footer();
  23. ?>
Add Comment
Please, Sign In to add comment