/var/www/hkosl.com/aga/wp-content/themes/twentysixteen/template-parts/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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/**
 * The template part for displaying content
 *
 * @package WordPress
 * @subpackage Twenty_Sixteen
 * @since Twenty Sixteen 1.0
 */
?>

<article id="post-<?php the_ID(); ?><?php post_class(); ?>>
    <header class="entry-header">
        <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
            <span class="sticky-post"><?php _e'Featured''twentysixteen' ); ?></span>
        <?php endif; ?>

        <?php the_titlesprintf'<h2 class="entry-title"><a href="%s" rel="bookmark">'esc_urlget_permalink() ) ), '</a></h2>' ); ?>
    </header><!-- .entry-header -->

    <?php twentysixteen_excerpt(); ?>

    <?php twentysixteen_post_thumbnail(); ?>

    <div class="entry-content">
        <?php
            
/* translators: %s: Name of current post */
            
the_content(
                
sprintf(
                    
__'Continue reading<span class="screen-reader-text"> "%s"</span>''twentysixteen' ),
                    
get_the_title()
                )
            );

            
wp_link_pages(
                array(
                    
'before'      => '<div class="page-links"><span class="page-links-title">' __'Pages:''twentysixteen' ) . '</span>',
                    
'after'       => '</div>',
                    
'link_before' => '<span>',
                    
'link_after'  => '</span>',
                    
'pagelink'    => '<span class="screen-reader-text">' __'Page''twentysixteen' ) . ' </span>%',
                    
'separator'   => '<span class="screen-reader-text">, </span>',
                )
            );
            
?>
    </div><!-- .entry-content -->

    <footer class="entry-footer">
        <?php twentysixteen_entry_meta(); ?>
        <?php
            edit_post_link
(
                
sprintf(
                    
/* translators: %s: Name of current post */
                    
__'Edit<span class="screen-reader-text"> "%s"</span>''twentysixteen' ),
                    
get_the_title()
                ),
                
'<span class="edit-link">',
                
'</span>'
            
);
            
?>
    </footer><!-- .entry-footer -->
</article><!-- #post-<?php the_ID(); ?> -->