-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
81 lines (74 loc) · 2.66 KB
/
content.php
File metadata and controls
81 lines (74 loc) · 2.66 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?php
/**
* @package Generate
*/
$generate_settings = wp_parse_args(
get_option( 'generate_settings', array() ),
generate_get_defaults()
);
?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> itemprop="blogPost"
itemtype="http://schema.org/BlogPosting" itemscope="itemscope">
<div class="inside-article">
<?php do_action( 'generate_before_content' ); ?>
<header class="entry-header">
<h2 class="entry-title" itemprop="headline"><a href="<?php the_permalink(); ?>"
rel="bookmark"><?php the_title(); ?></a></h2>
<?php if ( 'post' == get_post_type() ) : ?>
<div class="entry-meta">
<?php generate_posted_on(); ?>
</div><!-- .entry-meta -->
<?php endif; ?>
</header>
<!-- .entry-header -->
<?php do_action( 'generate_after_entry_header' ); ?>
<?php
$format = get_post_format();
if ( is_search() || 'excerpt' == $generate_settings['post_content'] ) : // Only display Excerpts for Search
?>
<div class="entry-summary" itemprop="text">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content" itemprop="text">
<?php the_content(); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'generate' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<?php endif; ?>
<footer class="entry-meta">
<?php if ( '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( __( ', ', 'generate' ) );
if ( $categories_list ) :
?>
<span class="cat-links">
<?php printf( __( '%1$s', 'generate' ), $categories_list ); ?>
</span>
<?php endif; // End if categories ?>
<?php
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', __( ', ', 'generate' ) );
if ( $tags_list ) :
?>
<span class="tags-links">
<?php printf( __( '%1$s', 'generate' ), $tags_list ); ?>
</span>
<?php endif; // End if $tags_list ?>
<?php endif; // End if 'post' == get_post_type() ?>
<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
<span class="comments-link">
<?php comments_popup_link( __( 'Leave a comment', 'generate' ), __( '1 Comment', 'generate' ), __( '% Comments', 'generate' ) ); ?>
</span>
<?php endif; ?>
</footer>
<!-- .entry-meta -->
<?php do_action( 'generate_after_content' ); ?>
</div>
<!-- .inside-article -->
</article><!-- #post-## -->