[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * The main template file 4 * 5 * This is the most generic template file in a WordPress theme 6 * and one of the two required files for a theme (the other being style.css). 7 * It is used to display a page when nothing more specific matches a query. 8 * E.g., it puts together the home page when no home.php file exists. 9 * 10 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ 11 * 12 * @package WordPress 13 * @subpackage Twenty_Sixteen 14 * @since Twenty Sixteen 1.0 15 */ 16 17 get_header(); ?> 18 19 <div id="primary" class="content-area"> 20 <main id="main" class="site-main"> 21 22 <?php if ( have_posts() ) : ?> 23 24 <?php if ( is_home() && ! is_front_page() ) : ?> 25 <header> 26 <h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1> 27 </header> 28 <?php endif; ?> 29 30 <?php 31 // Start the loop. 32 while ( have_posts() ) : 33 the_post(); 34 35 /* 36 * Include the Post-Format-specific template for the content. 37 * If you want to override this in a child theme, then include a file 38 * called content-___.php (where ___ is the Post Format name) and that 39 * will be used instead. 40 */ 41 get_template_part( 'template-parts/content', get_post_format() ); 42 43 // End the loop. 44 endwhile; 45 46 // Previous/next page navigation. 47 the_posts_pagination( 48 array( 49 'prev_text' => __( 'Previous page', 'twentysixteen' ), 50 'next_text' => __( 'Next page', 'twentysixteen' ), 51 /* translators: Hidden accessibility text. */ 52 'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>', 53 ) 54 ); 55 56 // If no content, include the "No posts found" template. 57 else : 58 get_template_part( 'template-parts/content', 'none' ); 59 60 endif; 61 ?> 62 63 </main><!-- .site-main --> 64 </div><!-- .content-area --> 65 66 <?php get_sidebar(); ?> 67 <?php get_footer(); ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Nov 21 08:20:01 2024 | Cross-referenced by PHPXref |