at path:
ROOT
/
wp-content
/
themes
/
darknews
/
single.php
run:
R
W
Run
admin-dashboard
DIR
2025-05-31 10:48:44
R
W
Run
assets
DIR
2025-05-31 10:48:44
R
W
Run
inc
DIR
2025-05-31 10:48:39
R
W
Run
js
DIR
2025-05-31 10:48:34
R
W
Run
languages
DIR
2025-05-31 10:48:34
R
W
Run
lib
DIR
2025-05-31 10:48:39
R
W
Run
template-parts
DIR
2025-05-31 10:48:34
R
W
Run
404.php
1.3 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
archive.php
3.03 KB
2025-05-31 10:41:26
R
W
Run
Delete
Rename
changelog.txt
2.5 KB
2025-05-31 10:41:26
R
W
Run
Delete
Rename
comments.php
1.82 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
footer.php
6.23 KB
2026-01-30 11:23:48
R
W
Run
Delete
Rename
front-page.php
381 By
2025-05-31 10:41:26
R
W
Run
Delete
Rename
functions.php
12.37 KB
2025-05-31 10:41:26
R
W
Run
Delete
Rename
functions_bak.php
12.37 KB
2026-02-10 06:30:10
R
W
Run
Delete
Rename
header.php
2.07 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
index.php
2.93 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
page.php
1.16 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
readme.txt
8.13 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
rtl.css
14.99 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
screenshot.png
200.57 KB
2025-05-31 10:41:26
R
W
Run
Delete
Rename
search.php
2.25 KB
2025-05-31 10:41:26
R
W
Run
Delete
Rename
sidebar.php
1.34 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
single.php
3.28 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
style.css
284.61 KB
2025-05-31 10:41:26
R
W
Run
Delete
Rename
woocommerce.css
7.68 KB
2025-05-31 10:41:27
R
W
Run
Delete
Rename
error_log
up
📄
single.php
Save
<?php /** * The template for displaying all single posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post * * @package DarkNews */ get_header(); ?> <div class="section-block-upper"> <div id="primary" class="content-area"> <main id="main" class="site-main"> <?php $wrap_class = 'social-after-title'; while (have_posts()) : the_post(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class('af-single-article'); ?>> <div class="entry-content-wrap read-single <?php echo esc_attr($wrap_class); ?>"> <?php if (is_single()) { do_action('darknews_action_single_header'); } ?> <?php $show_featured_image = darknews_get_option('single_show_featured_image'); if ($show_featured_image): ?> <div class="read-img pos-rel"> <?php darknews_post_thumbnail(); ?> <?php if (has_post_thumbnail($post->ID)): if ($aft_image_caption = get_post(get_post_thumbnail_id())->post_excerpt): if (trim($aft_image_caption) !== ''): ?> <span class="aft-image-caption"> <p> <?php echo esc_html($aft_image_caption); ?> </p> </span> <?php endif; endif; endif; ?> </div> <?php endif; ?> <?php get_template_part('template-parts/content', get_post_type()); ?> </div> <?php // If comments are open or we have at least one comment, load up the comment template. if (comments_open() || get_comments_number()) : comments_template(); endif; ?> <?php $show_related_posts = darknews_get_option('single_show_related_posts'); if ($show_related_posts): if ('post' === get_post_type()) : darknews_get_block('related'); endif; endif; ?> </article> <?php endwhile; // End of the loop... ?> </main><!-- #main --> </div><!-- #primary --> <?php get_sidebar(); ?> </div> <?php get_footer();