Advertisement
Guest User

Untitled

a guest
Dec 13th, 2015
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.12 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The template for displaying all pages.
  4.  *
  5.  * This is the template that displays all pages by default.
  6.  * Please note that this is the WordPress construct of pages
  7.  * and that other 'pages' on your WordPress site will use a
  8.  * different template.
  9.  *
  10.  * @package _tk
  11.  */
  12.  
  13. get_header(); ?>
  14.  
  15. <title><?php wp_title( '|', true, 'right' ); ?></title>
  16.  
  17.     <?php while ( have_posts() ) : the_post(); ?>
  18.  
  19.         <?php get_template_part( 'content', 'page' ); ?>
  20.  
  21.         <?php
  22.             // If comments are open or we have at least one comment, load up the comment template
  23.             if ( comments_open() || '0' != get_comments_number() )
  24.                 comments_template();
  25.         ?>
  26.  
  27.     <?php endwhile; // end of the loop. ?>
  28.    
  29. <?php get_sidebar(); ?>
  30.  
  31.            
  32.  
  33. <div class="custom">
  34.     <p><span style="font-size: 10.5pt; line-height: 115%; font-family: Arial, sans-serif; color: #3bab4e; " lang="NL-BE">Quazr bvba&nbsp;</span>&nbsp;| Rue des Fusilles 5 | B-7750 Mont de | &prime;Enclus | T <a href="tel:+32 (0)69 23 50 23">+32 (0)69 23 50 23</a> | F <a href="tel:+32 (0)69 23 60 23">+32 (0)69 23 60 23</a></p></div>
  35.  
  36.       </div>
  37. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement