golden hour
/home/doctorbruno/public_html/doc-noc.com/wp-content/themes/fitness-hub/template-parts
⬆️ Go Up
Upload
File/Folder
Size
Actions
content-none.php
1.15 KB
Del
OK
content-page.php
1.55 KB
Del
OK
content-recent.php
1.76 KB
Del
OK
content-single.php
2.32 KB
Del
OK
content.php
2.81 KB
Del
OK
Edit: content-page.php
<?php /** * Template part for displaying page content in page.php. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Acme Themes * @subpackage Fitness Hub */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class('init-animate'); ?>> <?php $fitness_hub_hide_single_featured_image = fitness_hub_featured_image_display(); $no_blog_image = ''; if( has_post_thumbnail() && 'disable' != $fitness_hub_hide_single_featured_image): echo '<div class="single-feat clearfix"><figure class="single-thumb single-thumb-full">'; the_post_thumbnail( $fitness_hub_hide_single_featured_image ); echo "</figure></div>"; else: $no_blog_image = 'no-image'; endif; ?> <div class="content-wrapper"> <div class="entry-content"> <?php the_content(); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'fitness-hub' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <?php if ( get_edit_post_link() ) : echo '<footer class="entry-footer">'; edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'fitness-hub' ), the_title( '<span class="screen-reader-text">"', '"</span>', false ) ), '<span class="edit-link">', '</span>' ); echo "</footer>";/*..entry-footer */ endif; ?> </div> </article><!-- #post-## -->
Save