관리-도구
편집 파일: content-single.php
<?php /** * Template part for displaying posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package Blog Articles */ $single_date = get_theme_mod( 'blog_articles_enable_single_date', true ); $single_author = get_theme_mod( 'blog_articles_enable_single_author', true ); $single_category = get_theme_mod( 'blog_articles_enable_single_category', true ); $single_tag = get_theme_mod( 'blog_articles_enable_single_tag', true ); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( is_singular() ) : ?> <header class="entry-header"> <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> </header><!-- .entry-header --> <?php if ( 'post' === get_post_type() ) : setup_postdata( get_post() ); ?> <div class="entry-meta"> <?php if ( $single_date === true ) { blog_articles_posted_on(); } if ( $single_author === true ) { blog_articles_posted_by(); } ?> </div><!-- .entry-meta --> <?php endif; ?> <?php endif; ?> <?php blog_articles_post_thumbnail(); ?> <div class="entry-content"> <?php the_content( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'blog-articles' ), array( 'span' => array( 'class' => array(), ), ) ), wp_kses_post( get_the_title() ) ) ); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'blog-articles' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <footer class="entry-footer"> <?php if ( $single_category === true ) { blog_articles_categories_list(); } if ( $single_tag === true ) { blog_articles_entry_footer(); } ?> </footer><!-- .entry-footer --> </article><!-- #post-<?php the_ID(); ?> -->