at path:
ROOT
/
wp-content
/
themes
/
kadu
/
template-parts
/
content-single.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-single.php
Save
<?php /** * Template part for displaying single posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package kadu */ $categories = get_the_category(); $hide_blog_date = cs_get_option('hide_blog_date'); $hide_authore = cs_get_option('hide_authore'); $hide_cmt_date = cs_get_option('hide_cmt_date'); ?> <div id="post-<?php the_ID(); ?>" <?php post_class('blog-details-content'); ?>> <div class="blog-details-content"> <?php if (has_post_thumbnail()) { ?> <div class="main-img"> <?php the_post_thumbnail('full') ?> </div> <?php } ?> <ul class="meta-author"> <?php if($hide_authore == true):?> <li> <i class="fa-regular fa-user"></i> <?php esc_html_e('By', 'kadu'); ?> <?php the_author();?> </li> <?php endif;?> <?php if($hide_cmt_date == true):?> <li> <i class="fa-regular fa-comment"></i> (<?php echo esc_attr(get_comments_number()); ?>) <?php esc_html_e('comments', 'kadu'); ?> </li> <?php endif;?> <?php if($hide_blog_date == true):?> <li> <i class="fa-light fa-calendar-days"></i> <?php echo date(get_option('date_format')); ?> </li> <?php endif;?> </ul> <h3 class="blog-title wow" data-splitting=""> <?php the_title();?> </h3> <div class="blog-disc"> <?php the_content( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __('Continue reading<span class="screen-reader-text"> "%s"</span>', 'kadu'), array( 'span' => array( 'class' => array(), ), ) ), wp_kses_post(get_the_title()) ) ); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__('Pages:', 'kadu'), 'after' => '</div>', ) ); ?> </div> <div class="blog-tag-share "> <div class="blog-tag"> <h6 class="title wow" data-splitting="">tag:</h6> <?php kadu_entry_footer();?> </div> <?php if(function_exists('kadu_post_share')):?> <div class="blog-share"> <?php kadu_post_share();?> </div> <?php endif;?> </div> <?php kadu_authore_info();?> <?php kadu_single_post_pagination();?> <!-- comments- --> <?php if ( comments_open() || get_comments_number() ) : comments_template(); endif; ?> </div> </div>