|
@@ -14,45 +14,45 @@ single-bookmarks.php
|
|
|
?>
|
|
?>
|
|
|
|
|
|
|
|
<?php get_header(); ?>
|
|
<?php get_header(); ?>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<div id="content">
|
|
<div id="content">
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<div id="inner-content" class="wrap clearfix">
|
|
<div id="inner-content" class="wrap clearfix">
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<div id="main" class="eightcol first clearfix" role="main">
|
|
<div id="main" class="eightcol first clearfix" role="main">
|
|
|
|
|
|
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">
|
|
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article">
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<header class="article-header">
|
|
<header class="article-header">
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<h1 class="single-title custom-post-type-title"><?php the_title(); ?></h1>
|
|
<h1 class="single-title custom-post-type-title"><?php the_title(); ?></h1>
|
|
|
<p class="byline vcard"><?php
|
|
<p class="byline vcard"><?php
|
|
|
- printf(__('Posted <time class="updated" datetime="%1$s" pubdate>%2$s</time> by <span class="author">%3$s</span> <span class="amp">&</span> filed under %4$s.', 'bonestheme'), get_the_time('Y-m-j'), get_the_time(__('F js, Y', 'bonestheme')), bones_get_the_author_posts_link(), get_the_term_list( get_the_ID(), 'custom_cat', "" ));
|
|
|
|
|
|
|
+ printf(__('Posted <time class="updated" datetime="%1$s" pubdate>%2$s</time> by <span class="author">%3$s</span> <span class="amp">&</span> filed under %4$s.', 'bonestheme'), get_the_time('Y-m-j'), get_the_time(__('F js, Y', 'bonestheme')), bones_get_the_author_posts_link(), get_the_term_list( $post->ID, 'custom_cat', ' ', ', ', '' ));
|
|
|
?></p>
|
|
?></p>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</header> <!-- end article header -->
|
|
</header> <!-- end article header -->
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<section class="entry-content clearfix">
|
|
<section class="entry-content clearfix">
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<?php the_content(); ?>
|
|
<?php the_content(); ?>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</section> <!-- end article section -->
|
|
</section> <!-- end article section -->
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<footer class="article-header">
|
|
<footer class="article-header">
|
|
|
<p class="tags"><?php echo get_the_term_list( get_the_ID(), 'custom_tag', '<span class="tags-title">' . __('Custom Tags:', 'bonestheme') . '</span> ', ', ' ) ?></p>
|
|
<p class="tags"><?php echo get_the_term_list( get_the_ID(), 'custom_tag', '<span class="tags-title">' . __('Custom Tags:', 'bonestheme') . '</span> ', ', ' ) ?></p>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</footer> <!-- end article footer -->
|
|
</footer> <!-- end article footer -->
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<?php comments_template(); ?>
|
|
<?php comments_template(); ?>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</article> <!-- end article -->
|
|
</article> <!-- end article -->
|
|
|
-
|
|
|
|
|
- <?php endwhile; ?>
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
|
|
+ <?php endwhile; ?>
|
|
|
|
|
+
|
|
|
<?php else : ?>
|
|
<?php else : ?>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<article id="post-not-found" class="hentry clearfix">
|
|
<article id="post-not-found" class="hentry clearfix">
|
|
|
<header class="article-header">
|
|
<header class="article-header">
|
|
|
<h1><?php _e("Oops, Post Not Found!", "bonestheme"); ?></h1>
|
|
<h1><?php _e("Oops, Post Not Found!", "bonestheme"); ?></h1>
|
|
@@ -64,15 +64,15 @@ single-bookmarks.php
|
|
|
<p><?php _e("This is the error message in the single-custom_type.php template.", "bonestheme"); ?></p>
|
|
<p><?php _e("This is the error message in the single-custom_type.php template.", "bonestheme"); ?></p>
|
|
|
</footer>
|
|
</footer>
|
|
|
</article>
|
|
</article>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</div> <!-- end #main -->
|
|
</div> <!-- end #main -->
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
<?php get_sidebar(); ?>
|
|
<?php get_sidebar(); ?>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</div> <!-- end #inner-content -->
|
|
</div> <!-- end #inner-content -->
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</div> <!-- end #content -->
|
|
</div> <!-- end #content -->
|
|
|
|
|
|
|
|
<?php get_footer(); ?>
|
|
<?php get_footer(); ?>
|