at path:
ROOT
/
wp-content
/
themes
/
oceanwp
/
singular.php
run:
R
W
Run
assets
DIR
2026-07-10 16:52:18
R
W
Run
inc
DIR
2026-07-10 16:52:18
R
W
Run
languages
DIR
2026-07-10 16:52:18
R
W
Run
partials
DIR
2026-07-10 16:52:18
R
W
Run
sass
DIR
2026-07-10 16:52:18
R
W
Run
templates
DIR
2026-07-10 16:52:18
R
W
Run
tribe-events
DIR
2026-07-10 16:52:18
R
W
Run
woocommerce
DIR
2026-07-10 16:52:18
R
W
Run
404.php
4.56 KB
2023-05-23 11:21:48
R
W
Run
Delete
Rename
500.php
211 By
2023-09-06 12:38:32
R
W
Run
Delete
Rename
README.md
1.83 KB
2026-07-01 12:41:12
R
W
Run
Delete
Rename
accessibility.txt
5.66 KB
2026-06-29 21:46:40
R
W
Run
Delete
Rename
babel.config.js
42 By
2023-09-06 12:38:32
R
W
Run
Delete
Rename
changelog.md
4.76 KB
2026-07-01 12:41:12
R
W
Run
Delete
Rename
comments.php
6.03 KB
2026-06-29 21:46:40
R
W
Run
Delete
Rename
footer-pwa.php
166 By
2023-09-06 12:38:32
R
W
Run
Delete
Rename
footer.php
1.67 KB
2022-08-09 11:52:52
R
W
Run
Delete
Rename
functions.php
37.19 KB
2026-06-29 21:46:40
R
W
Run
Delete
Rename
header-pwa.php
437 By
2023-09-06 12:38:32
R
W
Run
Delete
Rename
header.php
1.01 KB
2023-04-05 12:12:28
R
W
Run
Delete
Rename
image.php
1.38 KB
2023-09-06 12:38:32
R
W
Run
Delete
Rename
index.php
3.06 KB
2023-09-06 12:38:32
R
W
Run
Delete
Rename
offline.php
210 By
2023-09-06 12:38:32
R
W
Run
Delete
Rename
page.php
1.26 KB
2023-09-06 12:38:32
R
W
Run
Delete
Rename
readme.txt
6.39 KB
2026-07-01 12:41:12
R
W
Run
Delete
Rename
rtl.css
17.32 KB
2023-04-05 12:12:28
R
W
Run
Delete
Rename
screenshot.png
82.88 KB
2021-06-09 11:27:58
R
W
Run
Delete
Rename
search.php
1.52 KB
2024-10-16 13:50:30
R
W
Run
Delete
Rename
searchform.php
2.29 KB
2026-06-29 21:46:40
R
W
Run
Delete
Rename
sidebar-left.php
737 By
2023-09-06 12:38:32
R
W
Run
Delete
Rename
sidebar.php
872 By
2023-09-06 12:38:32
R
W
Run
Delete
Rename
singular.php
1.65 KB
2023-09-06 12:38:32
R
W
Run
Delete
Rename
style.css
2.09 KB
2026-07-01 12:41:12
R
W
Run
Delete
Rename
webpack.config.js
2.15 KB
2023-09-06 12:38:32
R
W
Run
Delete
Rename
wpml-config.xml
2.53 KB
2021-03-08 12:42:38
R
W
Run
Delete
Rename
error_log
up
📄
singular.php
Save
<?php /** * The template for displaying all pages, single posts and attachments * * This is a new template file that WordPress introduced in * version 4.3. * * @package OceanWP WordPress theme */ get_header(); ?> <?php do_action( 'ocean_before_content_wrap' ); ?> <div id="content-wrap" class="container clr"> <?php do_action( 'ocean_before_primary' ); ?> <div id="primary" class="content-area clr"> <?php do_action( 'ocean_before_content' ); ?> <div id="content" class="site-content clr"> <?php do_action( 'ocean_before_content_inner' ); ?> <?php // Elementor `single` location. if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'single' ) ) { // Start loop. while ( have_posts() ) : the_post(); if ( is_singular( 'download' ) ) { // EDD Page. get_template_part( 'partials/edd/single' ); } elseif ( is_singular( 'page' ) ) { // Single post. get_template_part( 'partials/page/layout' ); } elseif ( is_singular( 'oceanwp_library' ) || is_singular( 'elementor_library' ) ) { // Library post types. get_template_part( 'partials/library/layout' ); } else { // All other post types. get_template_part( 'partials/single/layout', get_post_type() ); } endwhile; } ?> <?php do_action( 'ocean_after_content_inner' ); ?> </div><!-- #content --> <?php do_action( 'ocean_after_content' ); ?> </div><!-- #primary --> <?php do_action( 'ocean_after_primary' ); ?> </div><!-- #content-wrap --> <?php do_action( 'ocean_after_content_wrap' ); ?> <?php get_footer(); ?>