Skip to content

Instantly share code, notes, and snippets.

@Steeru
Created April 25, 2018 04:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Steeru/f11ddaebbc7c4f087a93f31406ba7a95 to your computer and use it in GitHub Desktop.
Save Steeru/f11ddaebbc7c4f087a93f31406ba7a95 to your computer and use it in GitHub Desktop.
<?php
/**
* Itinerary Single Contnet Template
*
* This template can be overridden by copying it to yourtheme/wp-travel/content-single-itineraries.php.
*
* HOWEVER, on occasion wp-travel will need to update template files and you (the theme developer).
* will need to copy the new files to your theme to maintain compatibility. We try to do this.
* as little as possible, but it does happen. When this occurs the version of the template file will.
* be bumped and the readme will list any important changes.
*
* @see http://docs.wensolutions.com/document/template-structure/
* @author WenSolutions
* @package wp-travel/Templates
* @since 1.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
global $wp_travel_itinerary;
?>
<?php
do_action( 'wp_travel_before_single_itinerary', get_the_ID() );
if ( post_password_required() ) {
echo get_the_password_form();
return;
}
do_action( 'wp_travel_before_content_start');
?>
<div id="itinerary-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="content entry-content">
<div class="wp-travel trip-headline-wrapper">
<div class="wp-travel-feature-slide-content featured-side-image left-plot">
<div class="banner-image-wrapper" style="background-image: url(<?php echo esc_url( wp_travel_get_post_thumbnail_url( get_the_ID(), 'large' ) ) ?>)">
<?php echo wp_kses( wp_travel_get_post_thumbnail( get_the_ID() ), wp_travel_allowed_html( array( 'img' ) ) ); ?>
</div>
<?php if ( $wp_travel_itinerary->is_sale_enabled() ) : ?>
<div class="wp-travel-offer">
<span><?php esc_html_e( 'Offer', 'wp-travel' ) ?></span>
</div>
<?php endif; ?>
<?php if ( $wp_travel_itinerary->has_multiple_images() ) : ?>
<div class="wp-travel-view-gallery">
<a class="top-view-gallery" href=""><?php esc_html_e( 'View Gallery', 'wp-travel' ) ?></a>
</div>
<?php endif; ?>
</div>
<div class="wp-travel-feature-slide-content featured-detail-section right-plot">
<div class="right-plot-inner-wrap">
<?php do_action( 'wp_tarvel_before_single_title', get_the_ID() ) ?>
<?php $show_title = apply_filters( 'wp_travel_show_single_page_title', true ); ?>
<?php if ( $show_title ) : ?>
<header class="entry-header">
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
</header>
<?php endif; ?>
<?php do_action( 'wp_travel_after_single_title', get_the_ID() ) ?>
</div>
</div>
</div>
<?php //( 'wp_travel_after_single_itinerary_header', get_the_ID() );
the_content();
?>
</div><!-- .summary -->
</div><!-- #itinerary-<?php the_ID(); ?> -->
<?php do_action( 'wp_travel_after_single_itinerary', get_the_ID() ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment