1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?php /** * Template part for displaying page content in page.php * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package Fitness_Park */
?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <div class="post-image"> <?php fitness_park_post_thumbnail(); ?> </div>
<div class="entry-content box " > <div class="post-the-content"> <?php the_content();
wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'fitness-park' ), 'after' => '</div>', ) ); ?> </div> </div><!-- .entry-content --> </article><!-- #post-<?php the_ID(); ?> -->
|