at path:
ROOT
/
wp-content
/
themes
/
sirisha
/
author.php
run:
R
W
Run
assets
DIR
2026-06-11 02:04:52
R
W
Run
inc
DIR
2026-05-19 09:47:48
R
W
Run
languages
DIR
2026-05-19 09:47:48
R
W
Run
template-parts
DIR
2026-05-19 09:47:48
R
W
Run
templates
DIR
2026-05-19 09:47:48
R
W
Run
woocommerce
DIR
2026-05-19 09:47:48
R
W
Run
.DS_Store
6 KB
2023-03-05 11:34:20
R
W
Run
Delete
Rename
.htaccess
127 By
2026-05-27 01:21:48
R
W
Run
404.php
1.53 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
archive.php
2.9 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
author.php
2.61 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
comments.php
6.22 KB
2022-08-21 10:34:08
R
W
Run
Delete
Rename
footer.php
1.38 KB
2022-09-26 12:12:24
R
W
Run
Delete
Rename
functions.php
11.65 KB
2022-12-19 10:05:10
R
W
Run
Delete
Rename
header.php
890 By
2022-08-24 05:33:26
R
W
Run
Delete
Rename
index.php
2.7 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
page.php
936 By
2022-08-21 10:38:16
R
W
Run
Delete
Rename
screenshot.png
264.86 KB
2022-08-17 21:06:22
R
W
Run
Delete
Rename
search.php
2.32 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
searchform.php
848 By
2022-08-21 10:39:48
R
W
Run
Delete
Rename
sidebar.php
442 By
2022-08-21 10:40:06
R
W
Run
Delete
Rename
single-elementor_library.php
531 By
2022-08-21 10:40:38
R
W
Run
Delete
Rename
single-rainbow_projects.php
1.99 KB
2022-09-12 13:57:40
R
W
Run
Delete
Rename
single.php
1.72 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
style-editor.css
41.02 KB
2022-08-17 21:06:22
R
W
Run
Delete
Rename
style-rtl.css
29.53 KB
2023-01-02 17:24:42
R
W
Run
Delete
Rename
style.css
12.48 KB
2023-09-21 04:01:16
R
W
Run
Delete
Rename
error_log
up
📄
author.php
Save
<?php /** * The template for displaying archive pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package inbio */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } get_header(); $rainbow_options = Rainbow_Helper::rainbow_get_options(); $rainbow_blog_sidebar_class = ($rainbow_options['rainbow_blog_sidebar'] === 'no') || !is_active_sidebar('sidebar-1') ? 'col-lg-12 inbio-post-wrapper' : 'col-lg-8 inbio-post-wrapper'; ?> <!-- Start Blog Area --> <div class="rainbow-blog-area rn-section-gap"> <div class="container"> <div class="row row--40"> <?php if (is_active_sidebar('sidebar-1') && $rainbow_options['rainbow_blog_sidebar'] == 'left') { ?> <div class="col-lg-4 col-xl-4 "> <aside class="rainbow-sidebar-area"> <?php dynamic_sidebar(); ?> </aside> </div> <?php } ?> <div class="<?php echo esc_attr($rainbow_blog_sidebar_class); ?>"> <div class="row"> <div class="col-lg-12"> <div class="page-title pt--30"> <h2 class="title"><?php esc_html_e('Articles By This Author', 'inbio') ?></h2> </div> </div> </div> <?php if (have_posts()) : /* Start the Loop */ while (have_posts()) : the_post(); /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part('template-parts/post/content', get_post_format()); endwhile; rainbow_blog_pagination(); else : get_template_part('template-parts/content', 'none'); endif; ?> </div> <?php if (is_active_sidebar('sidebar-1') && $rainbow_options['rainbow_blog_sidebar'] == 'right') { ?> <div class="col-lg-4 col-xl-4"> <aside class="rainbow-sidebar-area"> <?php dynamic_sidebar(); ?> </aside> </div> <?php } ?> </div> </div> </div> <!-- End Blog Area --> <?php get_footer();