golden hour
/home/phakp/public_html/wp/wp-content/themes/vogue/templates/contents
⬆️ Go Up
Upload
File/Folder
Size
Actions
content-none.php
1.18 KB
Del
OK
content-page.php
704 B
Del
OK
content-search.php
2.5 KB
Del
OK
content-single.php
949 B
Del
OK
content.php
2.58 KB
Del
OK
Edit: content-page.php
<?php /** * The template used for displaying page content in page.php * * @package Vogue */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php if ( get_theme_mod( 'vogue-page-fimage-layout' ) == 'vogue-page-fimage-layout-standard' ) : ?> <?php if ( has_post_thumbnail() ) : ?> <div class="entry-content-img"> <?php the_post_thumbnail( 'full' ); ?> </div> <?php endif; ?> <?php endif; ?> <div class="entry-content"> <?php the_content(); ?> <?php wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'vogue' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> </article><!-- #post-## -->
Save