-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
75 lines (67 loc) · 2.43 KB
/
single.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php get_header(); ?>
<?php $options = get_option('inove_options'); ?>
<?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
<div id="postpath">
<a title="<?php _e('Goto homepage', 'inove'); ?>" href="<?php echo get_settings('home'); ?>/"><?php _e('Home', 'inove'); ?></a>
> <?php the_category(', '); ?>
> <?php the_title(); ?>
</div>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?></h2>
<div class="info">
<span class="date"><?php the_time(__('F jS, Y', 'inove')) ?></span>
<div class="act">
<?php if ($comments || comments_open()) : ?>
<span class="comments"><a href="#comments"><?php _e('Goto comments', 'inove'); ?></a></span>
<span class="addcomment"><a href="#respond"><?php _e('Leave a comment', 'inove'); ?></a></span>
<?php endif; ?>
<?php edit_post_link(__('Edit', 'inove'), '<span class="editpost">', '</span>'); ?>
<div class="fixed"></div>
</div>
<div class="fixed"></div>
</div>
<div class="content">
<?php the_content(); ?>
<p class="under">
<?php if ($options['author']) : ?><span class="author"><?php the_author_posts_link(); ?></span><?php endif; ?>
<?php if ($options['categories']) : ?><span class="categories"><?php the_category(', '); ?></span><?php endif; ?>
<?php if ($options['tags']) : ?><span class="tags"><?php the_tags('', ', ', ''); ?></span><?php endif; ?>
</p>
<div class="fixed"></div>
</div>
</div>
<?php else : ?>
<div class="errorbox">
<?php _e('Sorry, no posts matched your criteria.', 'inove'); ?>
</div>
<?php endif; ?>
<!-- related posts START -->
<?php
// when related posts with title
if(function_exists('wp23_related_posts')) {
echo '<div id="related_posts">';
wp23_related_posts();
echo '</div>';
echo '<div class="fixed"></div>';
}
/*
// when related posts without title
if(function_exists('wp23_related_posts')) {
echo '<div class="boxcaption">';
echo '<h3>Related Posts</h3>';
echo '</div>';
echo '<div id="related_posts" class="box">';
wp23_related_posts();
echo '</div>';
echo '<div class="fixed"></div>';
}
*/
?>
<!-- related posts END -->
<?php include('templates/comments.php'); ?>
<div id="postnavi">
<span class="prev"><?php next_post_link('%link') ?></span>
<span class="next"><?php previous_post_link('%link') ?></span>
<div class="fixed"></div>
</div>
<?php get_footer(); ?>