This repository has been archived by the owner on Mar 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
content.php
39 lines (39 loc) · 1.91 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
<article itemscope itemtype="http://schema.org/Article" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h2 class="entry-title" itemprop="name">
<a itemprop="url" href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'flat' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
</h2>
<?php $archive_metadata = flat_get_theme_option( 'archive_metadata' ); ?>
<?php if ( empty( $archive_metadata ) ) : ?>
<div class="entry-meta"><?php flat_entry_meta(); ?></div>
<?php endif; ?>
</header>
<?php $archive_featured_image = flat_get_theme_option( 'archive_featured_image' ) ?>
<?php if ( has_post_thumbnail() && ! post_password_required() && empty( $archive_featured_image ) ) : ?>
<div class="entry-thumbnail"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'flat' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_post_thumbnail( 'post-thumbnail', array( 'itemprop' => 'thumbnailUrl' ) ); ?></a></div>
<?php endif; ?>
<?php $archive_content = flat_get_theme_option( 'archive_content' ); ?>
<?php flat_hook_entry_before(); ?>
<?php if ( empty( $archive_content ) ) : ?>
<div class="entry-content" itemprop="articleBody">
<?php flat_hook_entry_top(); ?>
<?php the_content( __( 'Continue reading', 'flat' ) ); ?>
<?php wp_link_pages(
array(
'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'flat' ) . '</span>',
'after' => '</div>',
'link_before' => '<span>',
'link_after' => '</span>',
)
); ?>
<?php flat_hook_entry_bottom(); ?>
</div>
<?php else : ?>
<div class="entry-summary" itemprop="description">
<?php flat_hook_entry_top(); ?>
<?php the_excerpt(); ?>
<?php flat_hook_entry_bottom(); ?>
</div>
<?php endif; ?>
<?php flat_hook_entry_after(); ?>
</article>