Advertisement
Guest User

Onecolumn-page

a guest
Mar 5th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. /*
  2. Template Name: Oldalsáv nélküli sablon
  3. */
  4.  
  5. <?php get_header(); ?>
  6. <div class="content">
  7. <div class="inner">
  8. <div class="inner inner_full">
  9.     <?php
  10.     if(have_posts()) {
  11.         while (have_posts() ) {
  12.             the_post(); ?>
  13.            
  14.                                 <section>
  15.                         <header>
  16.                         <h1><a href="<?php the_permalink(); ?>"><?php the_title();
  17.                         ?></a></h1>
  18.                      
  19.                         </header>
  20.                         <?php the_content(); ?>
  21.                        
  22.                     </section>
  23.        
  24.         <?php }
  25.  
  26.     }
  27.     else {
  28.     echo '<p>Sajnáljuk, de a(z) '.get_search_query().' kifejezésre
  29.     nincs találat.</p>';
  30.     }
  31.     ?>
  32.  
  33. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement