🏠 Root
/
home
/
artorgp
/
parankhoit
/
wp-content
/
themes
/
parankhoit
/
Editing: content-page.php
<?php /** * The template used for displaying page content in page.php * * @package fortunato */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> </header><!-- .entry-header --> <div class="entry-content"> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'fortunato' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <span style="display:none" class="updated"><?php the_time(get_option('date_format')); ?></span> <div style="display:none" class="vcard author"><a class="url fn" href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>"><?php echo esc_html( get_the_author() ); ?></a></div> <footer class="entry-footer smallPart"> <?php edit_post_link( __( 'Edit', 'fortunato' ), '<span class="edit-link"><i class="fa fa-wrench spaceRight"></i>', '</span>' ); ?> </footer><!-- .entry-footer --> </article><!-- #post-## -->
Save
Cancel