home
/
aioutajg
/
unblockedgames247.com
/
wp-content
/
themes
/
news-portal
/
Go to Home Directory
+
Upload
Create File
root@0UT1S:~$
Execute
By Order of Mr.0UT1S
[DIR] ..
N/A
[DIR] assets
N/A
[DIR] inc
N/A
[DIR] languages
N/A
[DIR] layouts
N/A
[DIR] template-parts
N/A
[DIR] templates
N/A
404.php
977 bytes
Rename
Delete
archive.php
1.16 KB
Rename
Delete
changelog.txt
7.08 KB
Rename
Delete
comments.php
3.30 KB
Rename
Delete
footer.php
1.06 KB
Rename
Delete
functions.php
7.71 KB
Rename
Delete
header.php
2.66 KB
Rename
Delete
index.php
1.27 KB
Rename
Delete
page.php
1.05 KB
Rename
Delete
readme.txt
2.96 KB
Rename
Delete
rtl.css
12.06 KB
Rename
Delete
screenshot.png
302.58 KB
Rename
Delete
search.php
1.34 KB
Rename
Delete
sidebar-footer.php
2.48 KB
Rename
Delete
sidebar-left.php
470 bytes
Rename
Delete
sidebar.php
439 bytes
Rename
Delete
single.php
1.21 KB
Rename
Delete
style.css
65.56 KB
Rename
Delete
<?php /** * The template for displaying search results pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result * * @package Mystery Themes * @subpackage News Portal * @since 1.0.0 */ get_header(); ?> <div class="mt-search-content-wrapper"> <section id="primary" class="content-area"> <main id="main" class="site-main" role="main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-title"><?php /* translators: %s: search query. */ printf( esc_html__( 'Search Results for: %s', 'news-portal' ), '<span>' . get_search_query() . '</span>' ); ?></h1> </header><!-- .page-header --> <?php /* Start the Loop */ while ( have_posts() ) : the_post(); /** * Run the loop for the search to output the results. * If you want to overload this in a child theme then include a file * called content-search.php and that will be used instead. */ get_template_part( 'template-parts/content', 'search' ); endwhile; the_posts_navigation(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </main><!-- #main --> </section><!-- #primary --> <?php news_portal_get_sidebar(); ?> </div><!-- .mt-search-content-wrapper --> <?php get_footer();
Save