Advertisement
wclendining

Index.php-Basic

Mar 16th, 2015
434
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.99 KB | None | 0 0
  1.   <?php get_header(); ?>
  2.  
  3.    <div id="main">
  4.       <nav id="leftbar">
  5.          This is the left sidebar content
  6.       </nav>
  7.       <aside id="rightbar">
  8.          This is the right sidebar content
  9.       </aside>
  10.       <article>
  11.     <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  12.                 <nav id="breadcrumbs">
  13.                    home > next level > this page
  14.                 </nav>
  15.         <h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
  16.         <?php the_content(__('Read more'));?>
  17.             <footer id="pagefoot">
  18.                    Author: <?php the_author_posts_link(); ?><br />
  19.            Categories: <?php the_category(' &bull; '); ?><br />
  20.                <?php the_tags( 'Tags: ', ', ', '<br />'); ?>
  21.                    last updated: <?php the_modified_date(); ?>
  22.             </footer>
  23.         <?php endwhile; else: ?>
  24.         <p><?php _e('Sorry, no pages or posts matched your request.'); ?></p>
  25.     <?php endif; ?>
  26.     </article>
  27.   </div>
  28.  
  29.   <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement