Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-includes/ID3/loop.zip
Назад
PK {�,]bȈZ Z excerpt.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } $excerpt = get_the_excerpt($id); $excerpt = wp_trim_words($excerpt,10); ?> <?php if($excerpt && !empty($excerpt)) : ?> <p class="event-excerpt"> <?php echo esc_html($excerpt);?> </p> <?php endif; ?>PK {�,]�Ŕ�> > highlight_date_1.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } $ovaev_start_date = get_post_meta( $id, 'ovaev_start_date_time', true ); $date_event = $ovaev_start_date != '' ? date_i18n('d', $ovaev_start_date ) : ''; $month_event_M = $ovaev_start_date != '' ? date_i18n('M', $ovaev_start_date ) : ''; if( $ovaev_start_date != '' ){ ?> <div class="date-event"> <span class="date"><?php echo esc_html($date_event);?></span> <span class="month"><?php echo esc_html($month_event_M);?></span> </div> <?php } ?>PK {�,]YX(. . thumbnail.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } ?> <div class="event-thumbnail-v2"> <a href="<?php echo get_the_permalink( $id ); ?>"> <?php echo get_the_post_thumbnail( $id, 'ovaev_event_thumbnail' ); ?> </a> </div>PK {�,]�#�_+ + thumbnail_grid.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } ?> <div class="event-thumbnail"> <a href="<?php echo get_the_permalink( $id ); ?>"> <?php echo get_the_post_thumbnail( $id, 'ovaev_event_thumbnail' ); ?> </a> </div>PK {�,]+a�� � thumbnail_list.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } $url_img = get_the_post_thumbnail_url( $id, 'post-thumbnail' ); ?> <div class="event-thumbnail" style="background-image: url(<?php echo esc_url($url_img);?>);"> <a href="<?php echo the_permalink();?>"> <?php echo get_the_post_thumbnail( $id, 'ovaev_event_thumbnail' ); ?> </a> </div>PK {�,]�{��* * highlight_date_2.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } $ovaev_start_date = get_post_meta( $id, 'ovaev_start_date_time', true ); $date_event = $ovaev_start_date != '' ? date_i18n('d', $ovaev_start_date ) : ''; $month_event_M = $ovaev_start_date != '' ? date_i18n('M', $ovaev_start_date ) : ''; $year_event = $ovaev_start_date != '' ? date_i18n('Y', $ovaev_start_date ) : ''; if( $ovaev_start_date != '' ){ ?> <div class="date-event"> <span class="date second_font"> <?php echo esc_html($date_event);?> </span> <span class="month-year second_font"> <span class="month"> <?php echo esc_html($month_event_M);?> </span> <span class="year"> <?php echo esc_html($year_event);?> </span> </span> </div> <?php } ?>PK {�,]�� date_event.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if ( isset( $args['id'] ) ) { $id = $args['id']; } else { $id = get_the_id(); } // Date format $date_format = apply_filters( 'ovaev_date_event_format', get_option('date_format') ); // Time format $time_format = OVAEV_Settings::archive_event_format_time(); // Start date $ovaev_start_date = get_post_meta( $id, 'ovaev_start_date_time', true ); $start_date = $ovaev_start_date != '' ? date_i18n( $date_format, $ovaev_start_date ) : ''; // Start time $ovaev_start_time = get_post_meta( $id, 'ovaev_start_time', true ); $start_time = $ovaev_start_time ? date( $time_format, strtotime($ovaev_start_time) ) : ''; // End date $ovaev_end_date = get_post_meta( $id, 'ovaev_end_date_time', true ); $end_date = $ovaev_end_date != '' ? date_i18n( $date_format, $ovaev_end_date) : ''; // End time $ovaev_end_time = get_post_meta( $id, 'ovaev_end_time', true ); $end_time = $ovaev_end_time ? date( $time_format, strtotime($ovaev_end_time) ) : ''; ?> <div class="time equal-date"> <i class="icomoon icomoon-clock"></i> <?php if( $start_date == $end_date && $start_date != '' ){ ?> <span class="time-date-child"> <span class="date-child"> <?php echo esc_html( $start_time ).' - '.$end_time; ?> </span> </span> <?php }else{ ?> <span class="time-date-child"> <span class="date-child"> <?php echo esc_html( $start_date ) .' '. esc_html__( '@', 'ovaev' ); ?> </span> <span> <?php echo esc_html( $start_time ); ?></span> <?php if( apply_filters( 'ovaev_show_more_date_text', true ) ){ ?> <a href="<?php the_permalink() ?> " class="more_date_text" data-id="<?php echo get_the_id(); ?>"> <span><?php esc_html_e( ', more', 'ovaev' ); ?></span> </a> <?php } ?> </span> <?php } ?> </div> PK {�,]��� title.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } ?> <a href="<?php echo get_the_permalink( $id );?>"> <h2 class="second_font event_title"> <?php echo get_the_title( $id ); ?> </h2> </a>PK {�,]�U��s s readmore.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } ?> <div class="event-readmore"> <a href="<?php echo get_the_permalink( $id ) ?>" class="readmore second_font"> <?php echo esc_html_e( 'Event details', 'ovaev' ) ?> <i aria-hidden="true" class="icomoon icomoon-arrow-right"></i> </a> </div>PK {�,]U�?/ highlight_date_3.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } $ovaev_start_date = get_post_meta( $id, 'ovaev_start_date_time', true ); $date_event = $ovaev_start_date != '' ? date_i18n('d', $ovaev_start_date ) : ''; $month_event_F = $ovaev_start_date != '' ? date_i18n('F', $ovaev_start_date ) : ''; $week_day = $ovaev_start_date != '' ? date_i18n('l', $ovaev_start_date ) : ''; if( $ovaev_start_date != '' ){ ?> <div class="date-event"> <span class="date-month second_font"> <?php echo esc_html($date_event);?> <span class="month second_font"><?php echo esc_html($month_event_F);?></span> </span> <span class="weekday second_font"><?php echo esc_html($week_day);?></span> </div> <?php } ?>PK {�,]Pn7j2 2 type.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } $event_type = get_the_terms( $id, 'event_category') ? get_the_terms( $id, 'event_category') : '' ; $value_event_type = array(); if ( $event_type != '' ) { foreach ( $event_type as $value ) { $value_event_type[] = '<a class="event_type" href="'.get_term_link($value->term_id).'">' .$value->name. '</a>' ; } } if( $value_event_type ){ ?> <div class="post_cat"> <?php echo implode(', ', $value_event_type); ?> </div> <?php } ?>PK {�,]3騏 � venue.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } $ovaev_venue = get_post_meta( $id, 'ovaev_venue', true ); ?> <?php if( ! empty( $ovaev_venue ) ) { ?> <div class="venue"> <i class="icomoon icomoon-location"></i> <span class="number"> <?php echo esc_html( $ovaev_venue ); ?> </span> </div> <?php } ?>PK {�,]�� / / readmore2.phpnu ��� <?php if ( !defined( 'ABSPATH' ) ) exit(); if( isset( $args['id'] ) ){ $id = $args['id']; }else{ $id = get_the_id(); } ?> <div class="button_event"> <a class="view_detail second_font" href="<?php echo get_the_permalink( $id ); ?>"> <?php esc_html_e( 'Event details', 'ovaev' );?> </a> </div>PK {�,]bȈZ Z excerpt.phpnu ��� PK {�,]�Ŕ�> > � highlight_date_1.phpnu ��� PK {�,]YX(. . thumbnail.phpnu ��� PK {�,]�#�_+ + � thumbnail_grid.phpnu ��� PK {�,]+a�� � � thumbnail_list.phpnu ��� PK {�,]�{��* * � highlight_date_2.phpnu ��� PK {�,]�� C date_event.phpnu ��� PK {�,]��� � title.phpnu ��� PK {�,]�U��s s � readmore.phpnu ��� PK {�,]U�?/ � highlight_date_3.phpnu ��� PK {�,]Pn7j2 2 � type.phpnu ��� PK {�,]3騏 � < venue.phpnu ��� PK {�,]�� / / readmore2.phpnu ��� PK � p
| ver. 1.6 |
Github
|
.
| PHP 8.1.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка