Advertisement
pixeline

Theme My Login: page code

Nov 27th, 2011
165
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. /**
  3.  * Template Name: Login Page
  4.  */
  5.  
  6. get_header(); ?>
  7. <div id="left-column">
  8.     <div id="prime-content">
  9. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  10.  
  11.  
  12.                 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  13.                     <div class="entry-content clearfix">
  14.                         <?php the_content(); ?>
  15.                     </div><!-- .entry-content -->
  16.                 </article><!-- #post-## -->
  17. <?php endwhile; // end of the loop.
  18.  
  19. // Third sidebar, below content.
  20.     if ( is_active_sidebar( '3-colonne-sous-contenu' ) ) : ?>
  21.  
  22.             <ul id="sidebar-sous-contenu" class="sidebar">
  23.                 <?php dynamic_sidebar( '3-colonne-sous-contenu' ); ?>
  24.             </ul>
  25.  
  26. <?php endif; ?>
  27.     </div>
  28. </div>
  29. <?php get_sidebar(); ?>
  30. <?php get_footer(); ?>
  31.  
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement