-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.php
More file actions
20 lines (18 loc) · 803 Bytes
/
Copy pathcontent.php
File metadata and controls
20 lines (18 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php if ( is_search() || is_archive() || is_home()) : // Only display Excerpts for search pages ?>
<div class="entry-header">
<h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
</div>
<div class="entry-summary">
<?php the_excerpt( __( 'Lire la suite <span class="meta-nav">→</span>', 'qore' ) ); ?>
</div>
<?php else : ?>
<div class="entry-header">
<h1 class="entry-title"><?php the_title(); ?></h1>
</div>
<div class="entry-content">
<?php the_content( __( 'Lire la suite <span class="meta-nav">→</span>', 'qore' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'qore' ), 'after' => '</div>' ) ); ?>
</div>
<?php endif; ?>
</div>