Файловый менеджер - Редактировать - /home/tuudkjt/globeasy/wp-includes/ID3/parts.zip
Назад
PK Nj,]g�0�p p title.phpnu ��� <?php if ( is_singular() ) : ?> <?php if( apply_filters( 'tripgo_show_singular_title', true ) ){ ?> <h1 class="post-title"> <?php the_title(); ?> </h1> <?php } ?> <?php else : ?> <a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> <h2 class="post-title"> <?php the_title(); ?> </h2> </a> <?php endif; ?> PK Nj,]a�4 4 meta.phpnu ��� <?php if( !is_search() ){ if( is_single() ){ $show_date = tripgo_post_show_date() == 'yes' ? true: false; $show_cat = tripgo_post_show_cat() == 'yes' ? true: false; $show_author = tripgo_post_show_author() == 'yes' ? true: false; $show_comment = tripgo_post_show_comment() == 'yes' ? true: false; }else{ $show_date = tripgo_blog_show_date() == 'yes' ? true: false; $show_cat = tripgo_blog_show_cat() == 'yes' ? true: false; $show_author = tripgo_blog_show_author() == 'yes' ? true: false; $show_comment = tripgo_blog_show_comment() == 'yes' ? true: false; } ?> <?php if( $show_date || $show_cat || $show_author || $show_comment ){ ?> <ul class="post-meta"> <?php } ?> <?php if( $show_date ){ ?> <li class="date"> <i class="ovaicon-calendar-1"></i> <?php the_time( get_option( 'date_format' ));?> </li> <?php } ?> <?php if( $show_cat ){ ?> <li class="category"> <i class="ovaicon-folder-1"></i> <?php $categories = get_the_category(); if ( !empty( $categories ) && is_array( $categories ) ) { printf( '<a href="%s">%s</a>', esc_url( get_category_link( $categories[0]->term_id ) ), esc_html( $categories[0]->name ) ); } ?> </li> <?php } ?> <?php if( $show_author ){ ?> <li class="author"> <i class="ovaicon-user-1"></i> <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"> <?php the_author_meta( 'display_name' ); ?> </a> </li> <?php } ?> <?php if( $show_comment ){ ?> <li class="comment"> <i class="ovaicon-chat-comment-oval-speech-bubble-with-text-lines"></i> <?php comments_popup_link( esc_html__(' 0 Comments', 'tripgo'), esc_html__(' 1 Comment', 'tripgo'), ' % '.esc_html__('Comments', 'tripgo'), '', esc_html__( 'Comment off', 'tripgo' ) ); ?> </li> <?php } ?> <?php if( $show_date || $show_cat || $show_author || $show_comment ){ ?> </ul> <?php } ?> <?php } ?>PK Nj,]����� � audio.phpnu ��� <?php if(has_post_format('audio') && wp_oembed_get(get_post_meta(get_the_id(), "ova_met_embed_media", true))){ echo wp_oembed_get(get_post_meta(get_the_id(), "ova_met_embed_media", true)); }PK Nj,]�]�j excerpt.phpnu ��� <?php the_excerpt(); ?>PK Nj,]X'��l l readmore.phpnu ��� <a href="<?php the_permalink(); ?>" class="btn readmore"> <?php esc_html_e('Read more', 'tripgo'); ?> </a>PK Nj,]H�5+� � breadcrumbs.phpnu ��� <?php if( ! ( class_exists( 'woocommerce' ) && is_woocommerce() ) ){ if( get_post_meta( tripgo_get_current_id() ,'tripgo_met_show_breadcrumbs', true ) != 'no' ){ $separator = '<li class="li_separator"><span class="separator"><i class="ovaicon-next"></i></span></li>'; $html = '<div id="breadcrumbs">'; $html .= '<ul class="breadcrumb">'; global $post; $html .= '<li><a href="' . esc_url( home_url('/') ) . '" title="'.esc_attr__('Home', 'tripgo').'">' . esc_attr__('Home', 'tripgo') . '</a></li> '; if ( is_category() ) { global $wp_query; $cat_obj = $wp_query->get_queried_object(); $thisCat = $cat_obj->term_id; $thisCat = get_category($thisCat); $parentCat = get_category($thisCat->parent); if ($thisCat->parent != 0) $html .= $separator.'<li>'.get_category_parents($parentCat, TRUE, ' ').'</li>'; $html .= $separator.'<li>' . single_cat_title('', false) . '</li>'; } elseif ( is_day() ) { $html .= $separator.'<li><a href="' . get_year_link(get_the_time('Y')) . '">' . get_the_time('Y') . '</a></li>'; $html .= $separator.'<li><a href="' . get_month_link(get_the_time('Y'),get_the_time('m')) . '">' . get_the_time('F') . '</a></li>'; $html .= $separator.'<li>'.esc_html__('Archive by date', 'tripgo').' '.get_the_time('d').'</li>'; } elseif ( is_month() ) { $html .= $separator.'<li><a href="' . get_year_link(get_the_time('Y')) . '">' . get_the_time('Y') . '</a></li>'; $html .= $separator.'<li>' . esc_html__('Archive by month', 'tripgo').' ' . get_the_time('F') . '</li>'; } elseif ( is_year() ) { $html .= $separator.'<li>' . esc_html__('Archive by year', 'tripgo').' ' . get_the_time('Y') . '</li>'; } elseif ( is_single() && !is_attachment() ) { if ( get_post_type() != 'post' ) { $post_type = get_post_type_object(get_post_type()); if( $post_type->rewrite && get_option('permalink_structure') ){ $html .= $separator.'<li><a href="' . esc_url( home_url('/') ).$post_type->rewrite['slug'].'">' . $post_type->labels->singular_name . '</a></li>'; } $html .= $separator.'<li>' . get_the_title() . '</li>'; } else { $cat = get_the_category(); $cat = isset( $cat[0] ) ? $cat[0] : ''; if( $cat ){ $html .= $separator.'<li>'.get_category_parents( $cat, TRUE, '' ).'</li>'; $html .= $separator.'<li>' . get_the_title() . '</li>'; } } }elseif ( is_search()) { $html .= $separator.'<li>' . esc_html__('Search results for', 'tripgo').' ' . get_search_query() . '</li>'; }elseif ( !is_single() && !is_page() && get_post_type() != 'post' && !is_404() ) { $post_type = get_post_type_object(get_post_type()); if ( is_archive() && single_term_title('', false) ) { $html .= single_term_title('', false) ? $separator.'<li>' . single_term_title('', false) . '</li>' : ''; } else { $html .= $post_type ? $separator.'<li>' . $post_type->labels->singular_name . '</li>' : ''; } } elseif ( is_attachment() ) { $parent_id = $post->post_parent; $breadcrumbs = array(); while ($parent_id) { $page = get_page($parent_id); $breadcrumbs[] = '<a href="' . get_permalink($page->ID) . '">' . get_the_title($page->ID) . '</a>'; $parent_id = $page->post_parent; } $breadcrumbs = array_reverse($breadcrumbs); foreach ($breadcrumbs as $crumb) $html .= $separator .'<li>'. $crumb.'</li>'; $html .= $separator. '<li>' . get_the_title() . '</li>'; }elseif ( is_page() && !$post->post_parent ) { $html .= $separator. '<li>' . get_the_title() . '</li>'; } elseif ( is_page() && $post->post_parent ) { $parent_id = $post->post_parent; $breadcrumbs = array(); while ($parent_id) { $page = get_page($parent_id); $breadcrumbs[] = '<a href="' . get_permalink($page->ID) . '">' . get_the_title($page->ID) . '</a>'; $parent_id = $page->post_parent; } $breadcrumbs = array_reverse($breadcrumbs); foreach ($breadcrumbs as $crumb) $html .= $separator .'<li>'. $crumb.'</li>'; $html .= $separator.'<li>' . get_the_title() . '</li>'; }elseif ( is_tag() ) { $html .= $separator.'<li>' . esc_html__('Archive by tag', 'tripgo').' ' . single_tag_title('', false) . '</li>'; } elseif ( is_author() ) { global $author; $userdata = get_userdata($author); $html .= $separator.'<li>' . esc_html__('Articles posted by', 'tripgo').' ' . $userdata->display_name . '</li>'; } elseif ( is_home() ){ $html .= $separator.'<li>' . esc_html__('Blog', 'tripgo').' ' . '</li>'; }elseif ( is_404() ) { $html .= $separator.'<li>' . esc_html__('Page not found', 'tripgo') . '</li>'; } $html .= '</ul>'; $html .= '</div>'; $args = array( 'a' => array( 'href' => array(), 'title' => array() ), 'div' => array( 'id' => array(), 'class' => array(), ), 'ul' => array( 'id' => array(), 'class' => array(), ), 'li' => array( 'id' => array(), 'class' => array(), ), 'span' => array( 'id' => array(), 'class' => array(), ), 'i' => array( 'class' => array(), ), 'br' => array(), 'em' => array(), 'strong' => array(), ); echo wp_kses( $html, $args ); } }else{ $args = array( 'delimiter' => '<li><span class="separator"><i class="ovaicon-next"></i></span></li>', 'wrap_before' => '<div id="breadcrumbs" ><ul class="breadcrumb">', 'wrap_after' => '</ul></div>', 'before' => '<li>', 'after' => '</li>', 'home' => esc_html__( 'Home', 'tripgo' ) ); woocommerce_breadcrumb( $args ); } PK Nj,]��{�� � thumbnail.phpnu ��� <?php if ( has_post_thumbnail() && ! post_password_required() || has_post_format( 'image') ) : the_post_thumbnail( apply_filters( 'tripgo_blog_thumbnail_size','full' ), array('class'=> 'img-responsive' )); endif; ?> PK Nj,]�� � thumbnail_grid.phpnu ��� <?php if ( has_post_thumbnail() && ! post_password_required() || has_post_format( 'image') ) : the_post_thumbnail( 'tripgo_thumbnail' , array('class'=> 'img-responsive' )); endif; ?> PK Nj,]�vQ][ [ breadcrumbs_title.phpnu ��� <?php if ( is_home () && is_front_page () ) { esc_html_e('Home','tripgo'); } elseif ( is_front_page() ) { esc_html_e('Home','tripgo'); }elseif ( is_home () ) { esc_html_e('Blog','tripgo'); } elseif ( is_search () ) { esc_html_e('Search','tripgo'); } else if(is_category () ){ echo single_cat_title(''); }else if (is_tag ()){ esc_html_e('Tags','tripgo'); }else if( is_tax () || is_archive() ){ echo get_the_archive_title(); }else if( is_singular() ){ echo get_the_title(); }else if( is_404() ) { esc_html_e('page not found','tripgo'); } PK Nj,]� d5f f tags.phpnu ��� <?php the_tags('', '', ''); ?> <div class="clearboth"></div> <?php if( has_filter( 'tripgo_share_social' ) ){ ?> <div class="share_social"> <div class="ova_label"> <?php esc_html_e('Share: ', 'tripgo'); ?> </div> <?php echo apply_filters('tripgo_share_social', get_the_permalink(), get_the_title() ); ?> </div> <?php } ?> PK Nj,]�,�C C gallery.phpnu ��� <?php $post_id = get_the_ID(); $gallery = get_post_meta($post_id, 'ova_met_gallery_id', true) ? get_post_meta($post_id, 'ova_met_gallery_id', true) : ''; $carousel_id = 'carousel'.$post_id.'gallery'; $k = 0; if($gallery){ $i=0; ?> <div id="<?php echo esc_attr($carousel_id); ?>" class="owl-carousel slide_gallery" data-autoplay="true" data-autoplaytimeout="5000" data-autoplayspeed="500" data-stoponhover="true" data-loop="true" data-dots="true" data-nav="false" data-items="1" > <?php foreach ($gallery as $key => $value) { $active_dot = ( $k == 0 ) ? 'active' : ''; ?> <div class="carousel-item <?php echo esc_attr($active_dot); $k++; ?>"> <?php echo wp_get_attachment_image($value, 'large'); ?> </div> <?php } ?> </div> <?php }PK Nj,]I��GK K content.phpnu ��� <?php the_content(); wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . esc_html__( 'Pages:', 'tripgo' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>', 'pagelink' => '%', 'separator' => '', ) ); ?> PK Nj,]��E,� � comment.phpnu ��� <?php if ( 'div' === $args['style'] ) { $tag = 'div'; $add_below = 'comment'; } else { $tag = 'li'; $add_below = 'div-comment'; } ?> <<?php echo esc_attr( $tag ) . ' '; ?><?php comment_class( empty( $args['has_children'] ) ? '' : 'parent' ); ?> id="comment-<?php comment_ID(); ?>"> <div class="comment-body"> <div class="comment-meta"> <div class="comment-author"> <?php echo get_avatar( $comment, 128 ); ?> <?php printf( '<cite class="fn">%s</cite>', get_comment_author_link() ); ?> </div> <?php if ( '0' === $comment->comment_approved ) : ?> <em class="comment-awaiting-moderation"> <?php esc_attr_e( 'Your comment is awaiting moderation.', 'tripgo' ); ?> </em> <br/> <?php endif; ?> <a href="<?php echo esc_url( htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ); ?>" class="comment-date"> <?php echo '<time datetime="' . get_comment_date( 'c' ) . '">' . get_comment_date() . '</time>'; ?> </a> </div> <div id="div-comment-<?php comment_ID(); ?>" class="comment-content"> <div class="comment-text"> <?php comment_text(); ?> </div> <div class="reply"> <?php comment_reply_link( array_merge( $args, array( 'add_below' => $add_below, 'depth' => $depth, 'max_depth' => $args['max_depth'], ) ) ); ?> <?php edit_comment_link( esc_html__( 'Edit', 'tripgo' ), ' ', '' ); ?> </div> </div> </div> PK Nj,]&?�A� � video.phpnu ��� <?php if(has_post_format('video') && wp_oembed_get(get_post_meta(get_the_id(), "ova_met_embed_media", true))){ echo wp_oembed_get(get_post_meta(get_the_id(), "ova_met_embed_media", true)); }PK Nj,]g�0�p p title.phpnu ��� PK Nj,]a�4 4 � meta.phpnu ��� PK Nj,]����� � audio.phpnu ��� PK Nj,]�]�j excerpt.phpnu ��� PK Nj,]X'��l l f readmore.phpnu ��� PK Nj,]H�5+� � breadcrumbs.phpnu ��� PK Nj,]��{�� � �% thumbnail.phpnu ��� PK Nj,]�� � $'