golden hour
/home/doctorbruno/public_html/doc-noc.com/wp-content/themes/astrid/template-parts
⬆️ Go Up
Upload
File/Folder
Size
Actions
content-none.php
1.1 KB
Del
OK
content-page.php
1.13 KB
Del
OK
content-search.php
783 B
Del
OK
content.php
1.86 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 Astrid */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?> </header><!-- .entry-header --> <?php if ( has_post_thumbnail() ) : ?> <div class="single-thumb"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_post_thumbnail('astrid-large-thumb'); ?></a> </div> <?php endif; ?> <div class="entry-content"> <?php the_content(); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'astrid' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <footer class="entry-footer"> <?php edit_post_link( sprintf( /* translators: %s: Name of current post */ esc_html__( 'Edit %s', 'astrid' ), the_title( '<span class="screen-reader-text">"', '"</span>', false ) ), '<span class="edit-link">', '</span>' ); ?> </footer><!-- .entry-footer --> </article><!-- #post-## -->
Save