]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-content/themes/twentyseventeen/template-parts/post/content-gallery.php
WordPress 4.7.2-scripts
[autoinstalls/wordpress.git] / wp-content / themes / twentyseventeen / template-parts / post / content-gallery.php
1 <?php
2 /**
3  * Template part for displaying gallery posts
4  *
5  * @link https://codex.wordpress.org/Template_Hierarchy
6  *
7  * @package WordPress
8  * @subpackage Twenty_Seventeen
9  * @since 1.0
10  * @version 1.0
11  */
12 ?>
13
14 <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
15         <?php
16                 if ( is_sticky() && is_home() ) :
17                         echo twentyseventeen_get_svg( array( 'icon' => 'thumb-tack' ) );
18                 endif;
19         ?>
20         <header class="entry-header">
21                 <?php
22                         if ( 'post' === get_post_type() ) :
23                                 echo '<div class="entry-meta">';
24                                         if ( is_single() ) :
25                                                 twentyseventeen_posted_on();
26                                         else :
27                                                 echo twentyseventeen_time_link();
28                                                 twentyseventeen_edit_link();
29                                         endif;
30                                 echo '</div><!-- .entry-meta -->';
31                         endif;
32
33                         if ( is_single() ) {
34                                 the_title( '<h1 class="entry-title">', '</h1>' );
35                         } else {
36                                 the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' );
37                         }
38                 ?>
39         </header><!-- .entry-header -->
40
41         <?php if ( '' !== get_the_post_thumbnail() && ! is_single() && ! get_post_gallery() ) : ?>
42                 <div class="post-thumbnail">
43                         <a href="<?php the_permalink(); ?>">
44                                 <?php the_post_thumbnail( 'twentyseventeen-featured-image' ); ?>
45                         </a>
46                 </div><!-- .post-thumbnail -->
47         <?php endif; ?>
48
49         <div class="entry-content">
50
51                 <?php if ( ! is_single() ) :
52
53                         // If not a single post, highlight the gallery.
54                         if ( get_post_gallery() ) :
55                                 echo '<div class="entry-gallery">';
56                                         echo get_post_gallery();
57                                 echo '</div>';
58                         endif;
59
60                 endif;
61
62                 if ( is_single() || ! get_post_gallery() ) :
63
64                         /* translators: %s: Name of current post */
65                         the_content( sprintf(
66                                 __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentyseventeen' ),
67                                 get_the_title()
68                         ) );
69
70                         wp_link_pages( array(
71                                 'before'      => '<div class="page-links">' . __( 'Pages:', 'twentyseventeen' ),
72                                 'after'       => '</div>',
73                                 'link_before' => '<span class="page-number">',
74                                 'link_after'  => '</span>',
75                         ) );
76
77                 endif; ?>
78
79         </div><!-- .entry-content -->
80
81         <?php if ( is_single() ) : ?>
82                 <?php twentyseventeen_entry_footer(); ?>
83         <?php endif; ?>
84
85 </article><!-- #post-## -->