OSDN Git Service

WordPressテンプレート使用ショップデモデータ追加。
[magic3/magic3.git] / templates / shop-isle / loop.php
1 <?php
2 /**
3  * The loop template file.
4  *
5  * Included on pages like index.php, archive.php and search.php to display a loop of posts
6  * Learn more: http://codex.wordpress.org/The_Loop
7  *
8  * @package WordPress
9  * @subpackage Shop Isle
10  */
11
12 do_action( 'shop_isle_loop_before' );
13
14 while ( have_posts() ) :
15         the_post();
16
17         /*
18          Include the Post-Format-specific template for the content.
19          * If you want to override this in a child theme, then include a file
20          * called content-___.php (where ___ is the Post Format name) and that will be used instead.
21          */
22         get_template_part( 'content', get_post_format() );
23
24 endwhile;
25
26 /**
27  * After loop hook.
28  *
29  * @hooked shop_isle_paging_nav - 10
30  */
31 do_action( 'shop_isle_loop_after' );