This repository has been archived by the owner on Jan 2, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcontent.php
executable file
·80 lines (51 loc) · 2.02 KB
/
content.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
76
77
78
79
80
<?php
/**
* Generic content template.
*
* For Webcomic-specific content, see `webcomic/content.php`/
*
* @package Inkblot
*/
?>
<article role="article" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if (has_post_thumbnail()) : ?>
<div class="post-image"><?php the_post_thumbnail(); ?></div><!-- .post-image -->
<?php endif; ?>
<header class="post-header">
<?php if (is_single()) : ?>
<h1><?php the_title(); ?></h1>
<?php else : ?>
<h2><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php endif; ?>
<div class="post-details">
<?php
print inkblot_post_datetime();
print inkblot_post_author();
if ( ! post_password_required() and (comments_open() or get_comments_number())) :
comments_popup_link();
endif;
edit_post_link(sprintf(__('Edit %1$s', 'inkblot'), '<span class="screen-reader-text">' . get_the_title() . '</span>'));
?>
</div>
</header><!-- .post-header -->
<?php if (is_search()) : ?>
<div class="post-excerpt"><?php the_excerpt(); ?></div><!-- .post-excerpt -->
<?php else : ?>
<div class="post-content">
<?php
the_content();
wp_link_pages(array(
'before' => sprintf('<nav class="navigation pagination post" role="navigation" aria-label="%s"><div class="nav-links">', __('Post pages navigation', 'inkblot')),
'after' => '</div></nav>',
'pagelink' => sprintf('<span class="screen-reader-text">%s</span> %%', __('Page', 'inkblot'))
));
?>
</div>
<?php endif; ?>
<footer class="post-footer">
<?php
the_terms(get_the_ID(), 'category', sprintf('<span class="post-categories"><span class="screen-reader-text">%s </span>', __('Categories', 'inkblot')), __(', ', 'inkblot'), '</span>');
the_tags(sprintf('<span class="post-tags"><span class="screen-reader-text">%s </span>', __('Tags', 'inkblot')), __(', ', 'inkblot'), '</span>');
?>
</footer><!-- .post-footer -->
</article><!-- #post-<?php the_ID(); ?> -->