content-front-page.php 437 B

12345678910111213141516
  1. <article id="post-<?php the_ID(); ?>" <?php post_class( 'lodestar-intro' ); ?> >
  2. <div class="entry-content">
  3. <?php
  4. the_content();
  5. wp_link_pages( array(
  6. 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'lodestar' ),
  7. 'after' => '</div>',
  8. 'link_before' => '<span>',
  9. 'link_after' => '</span>'
  10. ) );
  11. ?>
  12. </div>
  13. <?php lodestar_edit_link( get_the_ID() ); ?>
  14. </article><!-- #post-## -->