at path:
ROOT
/
wp-content
/
themes
/
kadu
/
template-parts
/
content-page.php
run:
R
W
Run
footer
DIR
2025-12-13 10:18:31
R
W
Run
header
DIR
2025-12-13 10:18:31
R
W
Run
content-career.php
204 By
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content-none.php
1.2 KB
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content-page.php
1.03 KB
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content-portfolio.php
207 By
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content-search.php
1.71 KB
2024-06-23 04:21:40
R
W
Run
Delete
Rename
content-single.php
3.21 KB
2024-06-26 05:47:34
R
W
Run
Delete
Rename
content-template.php
206 By
2024-05-28 06:29:50
R
W
Run
Delete
Rename
content.php
1.72 KB
2024-06-14 09:05:16
R
W
Run
Delete
Rename
error_log
up
📄
content-page.php
Save
<?php /** * Template part for displaying page content in page.php * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package kadu */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <?php kadu_post_thumbnail(); ?> <div class="entry-content"> <?php the_content(); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__('Pages:', 'kadu'), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <?php if (get_edit_post_link()): ?> <footer class="entry-footer"> <?php edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __('Edit <span class="screen-reader-text">%s</span>', 'kadu'), array( 'span' => array( 'class' => array(), ), ) ), wp_kses_post(get_the_title()) ), '<span class="edit-link">', '</span>' ); ?> </footer><!-- .entry-footer --> <?php endif; ?> </article><!-- #post-<?php the_ID(); ?> -->