🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:search.php
<?php /** * Search Results Template * * @package Ophiro_Ventures */ get_header(); ?> <section class="o-section" style="padding-top:calc(var(--space-5xl) + 80px);"> <div class="o-container"> <div class="o-reveal" style="margin-bottom:var(--space-3xl);"> <h6><?php esc_html_e( 'Search Results', 'ophiro' ); ?></h6> <h1 style="font-size:clamp(2rem,4vw,3.5rem);font-weight:300;"> <?php /* translators: %s: search query */ printf( esc_html__( 'Results for "%s"', 'ophiro' ), get_search_query() ); ?> </h1> <div class="o-gold-line"></div> </div> <div class="o-content-grid o-stagger"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> <a href="<?php the_permalink(); ?>" class="o-content-card"> <div class="o-content-card__image"> <?php if ( has_post_thumbnail() ) : ?> <?php the_post_thumbnail( 'ophiro-card', array( 'loading' => 'lazy' ) ); ?> <?php else : ?> <div style="width:100%;height:100%;background:var(--ophiro-bg-surface);"></div> <?php endif; ?> </div> <div class="o-content-card__body"> <span class="o-content-card__category"><?php echo esc_html( get_post_type_object( get_post_type() )->labels->singular_name ); ?></span> <h3 class="o-content-card__title"><?php the_title(); ?></h3> <p class="o-content-card__excerpt"><?php echo esc_html( wp_trim_words( get_the_excerpt(), 22 ) ); ?></p> </div> </a> <?php endwhile; else : ?> <div style="grid-column:1/-1;text-align:center;padding:var(--space-5xl) 0;"> <p style="font-size:var(--text-xl);color:var(--ophiro-text-secondary);"> <?php esc_html_e( 'No results found. Please try a different search.', 'ophiro' ); ?> </p> </div> <?php endif; ?> </div> <?php ophiro_pagination(); ?> </div> </section> <?php get_footer(); ?>
Save Changes
Cancel
Create New File
Create New Folder