| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?php
- /*
- This is the custom post type post template.
- If you edit the post type name, you've got
- to change the name of this template to
- reflect that name change.
- i.e. if your custom post type is called
- register_post_type( 'bookmarks',
- then your single template should be
- single-bookmarks.php
- */
- ?>
- <?php get_header(); ?>
-
- <div id="content" class="clear">
-
- <div id="main" class="col620 clear" role="main">
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
-
- <article id="post-<?php the_ID(); ?>" <?php post_class('clear'); ?>>
-
- <header>
-
- <h1><?php the_title(); ?></h1>
-
- <p class="meta"><?php _e("Posted", "bonestheme"); ?> <time><?php the_time('F jS, Y'); ?></time> <?php _e("by", "bonestheme"); ?> <?php the_author_posts_link(); ?> <span class="amp">&</span> <?php _e("filed under", "bonestheme"); ?> <?php echo get_the_term_list( get_the_ID(), 'custom_cat', "" ) ?>.</p>
-
- </header> <!-- end article header -->
-
- <section class="post_content clear">
-
- <?php the_content(); ?>
-
- </section> <!-- end article section -->
-
- <footer>
-
- <p class="tags"><?php echo get_the_term_list( get_the_ID(), 'custom_tags', '<span class="tags-title">Custom Tags:</span> ', ', ' ) ?></p>
-
- </footer> <!-- end article footer -->
-
- </article> <!-- end article -->
-
- <?php comments_template(); ?>
-
- <?php endwhile; ?>
-
- <?php else : ?>
-
- <article id="post-not-found">
- <header>
- <h1>Not Found</h1>
- </header>
- <section class="post_content">
- <p>Sorry, but the requested resource was not found on this site.</p>
- </section>
- <footer>
- </footer>
- </article>
-
- <?php endif; ?>
-
- </div> <!-- end #main -->
-
- <?php get_sidebar(); // sidebar 1 ?>
-
- </div> <!-- end #content -->
- <?php get_footer(); ?>
|