Moving Loops to subdirectory
This commit is contained in:
parent
69cb9e8355
commit
0833d2ed3e
|
@ -34,7 +34,7 @@ get_header(); ?>
|
|||
* If you want to override this in a child theme, then include a file
|
||||
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'content', get_post_format() );
|
||||
get_template_part( 'loop-templates/content', get_post_format() );
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
|
|
@ -36,7 +36,7 @@ get_header(); ?>
|
|||
* If you want to override this in a child theme, then include a file
|
||||
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'content', get_post_format() );
|
||||
get_template_part( 'loop-templates/content', get_post_format() );
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
|
|
@ -19,7 +19,7 @@ get_header(); ?>
|
|||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'content', 'page' ); ?>
|
||||
<?php get_template_part( 'loop-templates/content', 'page' ); ?>
|
||||
|
||||
<?php
|
||||
// If comments are open or we have at least one comment, load up the comment template
|
||||
|
|
2
page.php
2
page.php
|
@ -21,7 +21,7 @@ get_header(); ?>
|
|||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'content', 'page' ); ?>
|
||||
<?php get_template_part( 'loop-templates/content', 'page' ); ?>
|
||||
|
||||
<?php
|
||||
// If comments are open or we have at least one comment, load up the comment template
|
||||
|
|
|
@ -29,7 +29,7 @@ get_header(); ?>
|
|||
* If you want to overload this in a child theme then include a file
|
||||
* called content-search.php and that will be used instead.
|
||||
*/
|
||||
get_template_part( 'content', 'search' );
|
||||
get_template_part( 'loop-templates/content', 'search' );
|
||||
?>
|
||||
|
||||
<?php endwhile; ?>
|
||||
|
|
|
@ -16,7 +16,7 @@ get_header(); ?>
|
|||
|
||||
<?php while ( have_posts() ) : the_post(); ?>
|
||||
|
||||
<?php get_template_part( 'content', 'single' ); ?>
|
||||
<?php get_template_part( 'loop-templates/content', 'single' ); ?>
|
||||
|
||||
<?php understrap_post_nav(); ?>
|
||||
|
||||
|
|
Reference in New Issue