| Server IP : 217.160.0.154 / Your IP : 216.73.217.138 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u97626428 ( 1555483) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/13/d787277790/htdocs/clickandbuilds/URP/wp-content.orig/themes/marketingly/ |
Upload File : |
<?php /** * The template for displaying search results pages * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result * * @package marketingly */ get_header(); ?> <section id="primary" class="featured-content content-area"> <main id="main" class="site-main all-blog-articles"> <?php if ( have_posts() ) : ?> <header class="fbox page-header"> <h1 class="page-title"><?php /* translators: %s: search query. */ printf( esc_html__( 'Search Results for: %s', 'marketingly' ), '<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', get_post_format() ); endwhile; echo '<div class="text-center pag-wrapper">'; marketingly_numeric_posts_nav(); echo '</div>'; else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </main><!-- #main --> </section><!-- #primary --> <?php get_sidebar(); get_footer();