Advertisement
Guest User

front-page.php

a guest
Jan 27th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  2.                     <div class="entry-content">
  3.                         <?php the_content(); ?>
  4.                         <?php
  5.                             wp_link_pages( array(
  6.                                 'before' => '<div class="page-links">' . __( 'Pages:', 'unite' ),
  7.                                 'after'  => '</div>',
  8.                             ) );
  9.                         ?>
  10.                     </div><!-- .entry-content -->
  11.                     <?php edit_post_link( __( 'Edit', 'unite' ), '<footer class="entry-meta"><i class="fa fa-pencil-square-o"></i><span class="edit-link">', '</span></footer>' ); ?>
  12.                 </article><!-- #post-## -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement