🤩 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:archive-journey.php
<?php /** * Archive: Journeys * * @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="text-align:center;margin-bottom:var(--space-4xl);"> <h6><?php esc_html_e( 'Curated Experiences', 'ophiro' ); ?></h6> <h1 style="font-size:clamp(2.5rem,5vw,4.5rem);font-weight:300;"><?php esc_html_e( 'All Journeys', 'ophiro' ); ?></h1> <div class="o-gold-line o-gold-line--center"></div> <p style="font-size:var(--text-lg);color:var(--ophiro-text-secondary);max-width:700px;margin:var(--space-xl) auto 0;"> <?php esc_html_e( 'Each journey is a meticulously crafted narrative — designed to reveal the extraordinary at every turn.', 'ophiro' ); ?> </p> </div> <?php if ( is_tax( 'territory' ) ) : ?> <div class="o-reveal o-text-center" style="margin-bottom:var(--space-3xl);"> <p style="font-size:var(--text-sm);color:var(--ophiro-text-tertiary);"> <?php printf( esc_html__( 'Showing journeys in: %s', 'ophiro' ), '<strong style="color:var(--ophiro-gold-star);">' . esc_html( single_term_title( '', false ) ) . '</strong>' ); ?> </p> </div> <?php endif; ?> </div> </section> <section class="o-section o-section--sm" style="padding-top:0;"> <div class="o-container"> <div class="o-featured-journeys__grid o-stagger"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); $territory_terms = get_the_terms( get_the_ID(), 'territory' ); $territory_name = ( $territory_terms && ! is_wp_error( $territory_terms ) ) ? $territory_terms[0]->name : ''; ?> <a href="<?php the_permalink(); ?>" class="o-journey-card"> <div class="o-journey-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; ?> <span class="o-journey-card__badge"><?php echo esc_html( $territory_name ); ?></span> </div> <div class="o-journey-card__body"> <span class="o-journey-card__territory"><?php echo esc_html( $territory_name ); ?></span> <h3 class="o-journey-card__title"><?php the_title(); ?></h3> <p class="o-journey-card__excerpt"><?php echo esc_html( wp_trim_words( get_the_excerpt(), 18 ) ); ?></p> <div class="o-journey-card__meta"> <span class="o-journey-card__duration"><?php echo esc_html( ophiro_get_duration() ); ?></span> <?php echo ophiro_get_pricing_badge(); ?> </div> </div> </a> <?php endwhile; endif; ?> </div> <?php ophiro_pagination(); ?> </div> </section> <?php get_footer(); ?>
Save Changes
Cancel
Create New File
Create New Folder