We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

kristin on 01/09/08


Tagged

template page wordpress k2


Versions (?)


Page Template


Published in: PHP 


URL: http://kpishdadi.com/about/resume/

  1. <?php
  2. /*
  3. Template Name: Resume
  4. */
  5. ?>
  6. <?php get_header(); ?>
  7.  
  8. <div class="content">
  9. <div id="primary">
  10. <div id="notices"></div>
  11. <a name="startcontent" id="startcontent"></a>
  12.  
  13. <div id="current-content" class="hfeed">
  14.  
  15. <?php while (have_posts()): the_post(); ?>
  16. <div id="post-<?php the_ID(); ?>" class="<?php k2_post_class(); ?>">
  17.  
  18. <div class="page-head">
  19. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title='<?php printf( __('Permanent Link to "%s"','k2_domain'), wp_specialchars(strip_tags(the_title('', '', false)),1) ); ?>'><?php the_title(); ?></a></h2>
  20. <?php edit_post_link(__('Edit','k2_domain'), '<span class="entry-edit">','</span>'); ?>
  21. </div>
  22.  
  23. <div class="entry-content">
  24. <?php the_content(); ?>
  25.  
  26. <?php link_pages('<p><strong>'.__('Pages:','k2_domain').'</strong> ', '</p>', 'number'); ?>
  27. </div>
  28.  
  29. </div> <!-- #post-ID -->
  30. <?php endwhile; ?>
  31.  
  32. </div> <!-- #current-content -->
  33.  
  34. <div id="dynamic-content"></div>
  35. </div> <!-- #primary -->
  36.  
  37. </div> <!-- .content -->
  38.  
  39. <?php get_footer(); ?>

Report this snippet 

You need to login to post a comment.