Advertisement
SRD75

tribe-events\default-template.php

Jul 21st, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.56 KB | None | 0 0
  1. <?php
  2. /**
  3.  * Default Events Template
  4.  * This file is the basic wrapper template for all the views if 'Default Events Template'
  5.  * is selected in Events -> Settings -> Template -> Events Template.
  6.  *
  7.  * Override this template in your own theme by creating a file at [your-theme]/tribe-events/default-template.php
  8.  *
  9.  * @package TribeEventsCalendar
  10.  *
  11.  */
  12.  
  13. if ( ! defined( 'ABSPATH' ) ) {
  14.     die( '-1' );
  15. }
  16.  
  17. get_header();
  18. wpm_header(); // wpm_header_hook
  19. wpm_page_header(); // wpm_page_header_hook
  20. ?>
  21. <div id="tribe-events-pg-template">
  22.     <div id="wascc-competitors">
  23.         <div class="wascc-section-title">Competitors & Official</div>
  24.         <div id="wascc-competitors-section-left">
  25.             <ul class="wascc-grey">
  26.                 <li><a href="<?php echo get_post_meta($post->ID, 'competitors_entry_form', $single); ?>">Entry Form</a></li>
  27.                 <li><a href="<?php echo get_post_meta($post->ID, 'competitors_regulations', $single); ?>">Regulations</a></li>
  28.                 <li><a href="<?php echo get_post_meta($post->ID, 'competitors_timetable', $single); ?>">Timetable</a></li>
  29.                 <li><a href="<?php echo get_post_meta($post->ID, 'competitors_pit_bay_allocations', $single); ?>">Pit Bay Allocations</a></li>
  30.                 <li><a href="<?php echo get_post_meta($post->ID, 'competitors_bulletins', $single); ?>">Bulletins</a></li>
  31.             </ul>
  32.         </div>
  33.         <div id="wascc-competitors-section-right">
  34.             <div id="wascc-competitors-photo">
  35.                 <img src="<?php echo get_post_meta($post->ID, 'competitors_display_photo', $single); ?>" alt="<?php the_title(); ?>" title="<?php the_title(); ?>" />
  36.             </div>
  37.         </div>    
  38.     </div>
  39.     <div id="wascc-spectators">
  40.         <div class="wascc-section-title">Spectators</div>
  41.         <div id="wascc-spectators-section-left">
  42.             <ul class="wascc-grey">
  43.                 <li><a href="<?php echo get_post_meta($post->ID, 'spectators_timetable', $single); ?>">Timetable</a></li>
  44.                 <li><a href="<?php echo get_post_meta($post->ID, 'spectators_maps_location', $single); ?>">Maps & Location</a></li>
  45.                 <li><a href="<?php echo get_post_meta($post->ID, 'spectators_contact_info', $single); ?>">Contact Info</a></li>
  46.                 <li><a href="<?php echo get_post_meta($post->ID, 'spectators_annual_program', $single); ?>">Annual Program</a></li>
  47.                 <li><a href="<?php echo get_post_meta($post->ID, 'spectators_buy_tickets_url', $single); ?>" class="ticket">Buy Tickets</a></li>
  48.             </ul>
  49.             <div id="wascc-entree-fee-label">Gate Entry Fee</li></div>
  50.             <div id="wascc-entree-fee-costs">
  51.                 <ul>
  52.                     <li>$30.00</li>
  53.                     <li>$12.00</li>
  54.                     <li>$22.00</li>
  55.                     <li>$70.00</li>
  56.                 </ul>
  57.             </div>
  58.         </div>
  59.         <div id="wascc-spectators-section-right">
  60.             <div id="wascc-event-poster-thumb">
  61.                 <a href="<?php echo get_post_meta($post->ID, 'spectators_event_poster_url', $single); ?>" target="_blank"><img src="<?php echo get_post_meta($post->ID, 'spectators_event_poster_url', $single); ?>" alt="<?php the_title(); ?> event poster" title="<?php the_title(); ?> event poster" /></a>
  62.             </div>              
  63.         </div>
  64.     </div>
  65.     <div class="clear"></div>
  66.     <?php tribe_events_before_html(); ?>
  67.     <?php tribe_get_view(); ?>
  68.     <?php tribe_events_after_html(); ?>
  69. </div> <!-- #tribe-events-pg-template -->
  70. <?php
  71.     //wpm_page_right(); //wpm_page_right_hook
  72.     wpm_footer();
  73.     get_footer();
  74. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement