Uh oh!
There was an error while loading. Please reload this page.
forked from Automattic/_s
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
Latest commit
61 lines (54 loc) · 2.35 KB
/
Copy pathcontent.php
File metadata and controls
61 lines (54 loc) · 2.35 KB
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
<?php
/**
* @package _s
* @since _s 1.0
*/
?>
<article id="post-<?phpthe_ID(); ?>" <?phppost_class(); ?>>
<header class="entry-header">
<h1 class="entry-title"><a href="<?phpthe_permalink(); ?>" title="<?phpechoesc_attr( sprintf( __( 'Permalink to %s', '_s' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?phpthe_title(); ?></a></h1>
<?phpif ( 'post' == get_post_type() ) : ?>
<div class="entry-meta">
<?php_s_posted_on(); ?>
</div><!-- .entry-meta -->
<?phpendif; ?>
</header><!-- .entry-header -->
<?phpif ( is_search() ) : // Only display Excerpts for Search ?>
<div class="entry-summary">
<?phpthe_excerpt(); ?>
</div><!-- .entry-summary -->
<?phpelse : ?>
<div class="entry-content">
<?phpthe_content( __( 'Continue reading <span class="meta-nav">→</span>', '_s' ) ); ?>
<?phpwp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', '_s' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?phpendif; ?>
<footer class="entry-meta">
<?phpif ( 'post' == get_post_type() ) : // Hide category and tag text for pages on Search ?>
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', '_s' ) );
if ( $categories_list && _s_categorized_blog() ) :
?>
<span class="cat-links">
<?phpprintf( __( 'Posted in %1$s', '_s' ), $categories_list ); ?>
</span>
<?phpendif; // End if categories ?>
<?php
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', __( ', ', '_s' ) );
if ( $tags_list ) :
?>
<span class="sep"> | </span>
<span class="tags-links">
<?phpprintf( __( 'Tagged %1$s', '_s' ), $tags_list ); ?>
</span>
<?phpendif; // End if $tags_list ?>
<?phpendif; // End if 'post' == get_post_type() ?>
<?phpif ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
<span class="sep"> | </span>
<span class="comments-link"><?phpcomments_popup_link( __( 'Leave a comment', '_s' ), __( '1 Comment', '_s' ), __( '% Comments', '_s' ) ); ?></span>
<?phpendif; ?>
<?phpedit_post_link( __( 'Edit', '_s' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post-<?phpthe_ID(); ?> -->