????
Current Path : /home/innovagencyco/public_html/statxpress/wp-content/themes/electro/ |
Current File : /home/innovagencyco/public_html/statxpress/wp-content/themes/electro/loop.php |
<?php /** * The loop template file. * * Included on pages like index.php, archive.php and search.php to display a loop of posts * Learn more: http://codex.wordpress.org/The_Loop * * @package electro */ do_action( 'electro_loop_before' ); while ( have_posts() ) : the_post(); /* Include the Post-Format-specific template for the content. * 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( 'templates/contents/content', get_post_format() ); endwhile; /** * @hooked electro_paging_nav - 10 */ do_action( 'electro_loop_after' );