Advertisement
Guest User

Tehtäväpohja

a guest
Jan 19th, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.04 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Template Name: Tehtävän nimi
  4.  */
  5.  
  6. get_header(); ?>
  7.  
  8.         <div id="container" class="one-column">
  9.             <div id="content" role="main">
  10.  
  11. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  12.  
  13.                 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  14.                     <?php if ( is_front_page() ) { ?>
  15.                         <h2 class="entry-title"><?php the_title(); ?></h2>
  16.                     <?php } else { ?>
  17.                         <h1 class="entry-title"><?php the_title(); ?></h1>
  18.                     <?php } ?>
  19.  
  20. <!-- Tehtävän HTML-koodi tähän -->
  21.  
  22.                     <div class="entry-content">
  23.                         <?php the_content(); ?>
  24.                         <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
  25.                         <?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
  26.                     </div><!-- .entry-content -->
  27.                 </div><!-- #post-## -->
  28.  
  29.                 <?php comments_template( '', true ); ?>
  30.  
  31. <?php endwhile; // end of the loop. ?>
  32.  
  33.             </div><!-- #content -->
  34.         </div><!-- #container -->
  35.  
  36. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement