文件操作 - single-udt_portfolio.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/personalchoicespa/public_html/wp-content/themes/ego/single-udt_portfolio.php
编辑文件内容
<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Ego * @since Ego 1.0 */ get_header(); ?> <!--start page--> <div class="section odd"> <!--start content--> <div class="content clearfix"> <?php if ( have_posts() ) while ( have_posts() ) : the_post(); $my_args_2 = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => 'inherit', 'orderby' => 'menu_order', 'order' => 'ASC', 'post_parent' => $post->ID ); $attachments = get_posts( $my_args_2 ); $count_attachments = count($attachments); $udt_slider_count = 0; $udt_post_meta=get_post_meta($post->ID, '_udt_portfolio_meta', true); ?> <!--section title--> <div class="section-title"> <?php echo stripslashes(html_entity_decode(returnOptionValue('portfolio_title'))); ?> </div> <!--end section title--> <!--start ajaxpage/post--> <div id="ajaxpage" class="portfolio-<?php the_ID(); ?>"> <h1><?php if(isset($udt_post_meta['display_title']) && $udt_post_meta['display_title']!='') { echo $udt_post_meta['display_title']; } else { the_title(); } ?></h1> <?php if($udt_post_meta['page_layout']=='default') { if($count_attachments>1) { // Check if the post has multiple images assigned to it. $udt_blog_image = '<div class="project-display">'; $udt_blog_image .= '<div class="flexslider"><ul class="slides">'; foreach ( $attachments as $attachment ) { $slide_display_opt = get_post_meta( $attachment->ID, '_udt_slide_display_opt', true ); $slide_link_url = get_post_meta( $attachment->ID, '_udt_slide_link_url', true ); if($slide_display_opt=='slider') { $udt_blog_image .= '<li>'; if($slide_link_url!='') { $udt_blog_image .= '<a href="'.$slide_link_url.'">'; } $udt_blog_image .= wp_get_attachment_image($attachment->ID,'post-thumbnail'); if($slide_link_url!='') { $udt_blog_image .= '</a>'; } if(wp_get_attachment_metadata($attachment->ID)) { if($attachment->post_excerpt !='') { $udt_blog_image .= '<p class="flex-caption">'.$attachment->post_excerpt.'</p>'; } else if($attachment->post_content !='') { $udt_blog_image .= '<p class="flex-caption">'.$attachment->post_content.'</p>'; } } $udt_blog_image .= '</li>'."\n"; $udt_slider_count++; } } $udt_blog_image .= '</ul></div>'; $udt_blog_image .= '</div>'; if($udt_slider_count>1) { echo $udt_blog_image; } else if($udt_slider_count==1) { $udt_blog_image = '<div class="project-display">'; $udt_blog_image .= 'Please upload multiple images to the slider.'; $udt_blog_image .= '</div>'; echo $udt_blog_image; } else if ( has_post_thumbnail() ) { // Check if the post has a Post Thumbnail assigned to it. $udt_blog_image = ''; $slide_display_opt = get_post_meta( get_post_thumbnail_id(), '_udt_slide_display_opt', true ); $slide_video_url = get_post_meta( get_post_thumbnail_id(), '_udt_slide_video_url', true ); if($slide_display_opt=='video-youtube' || $slide_display_opt=='video-vimeo') { $udt_blog_image = '<div class="project-display">'; $udt_blog_image .= '<div class="video" style="width:600px;height:338px;margin-bottom:0;">'; if($slide_display_opt=='video-youtube') { $udt_blog_image .= '<iframe src="http://www.youtube.com/embed/'.$slide_video_url.'?autohide=2&disablekb=0&fs=1&hd=0&loop=0&rel=0&showinfo=0&showsearch=0&wmode=transparent" frameborder="0" allowfullscreen></iframe>'; } else if($slide_display_opt=='video-vimeo') { $udt_blog_image .= '<iframe src="http://player.vimeo.com/video/'.$slide_video_url.'?title=0&byline=0&portrait=0&color='.returnOptionValue('vimeo_controls_color').'&autoplay=0&loop=0" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'; } $udt_blog_image .= '</div>'; $udt_blog_image .= '</div>'; } else { $udt_blog_image = '<div class="project-display">'.get_the_post_thumbnail().'</div>'; } echo $udt_blog_image; } } else if ( has_post_thumbnail() ) { // Check if the post has a Post Thumbnail assigned to it. $udt_blog_image = ''; $slide_display_opt = get_post_meta( get_post_thumbnail_id(), '_udt_slide_display_opt', true ); $slide_video_url = get_post_meta( get_post_thumbnail_id(), '_udt_slide_video_url', true ); if($slide_display_opt=='video-youtube' || $slide_display_opt=='video-vimeo') { $udt_blog_image = '<div class="project-display">'; $udt_blog_image .= '<div class="video" style="width:600px;height:338px;margin-bottom:0;">'; if($slide_display_opt=='video-youtube') { $udt_blog_image .= '<iframe src="http://www.youtube.com/embed/'.$slide_video_url.'?autohide=2&disablekb=0&fs=1&hd=0&loop=0&rel=0&showinfo=0&showsearch=0&wmode=transparent" frameborder="0" allowfullscreen></iframe>'; } else if($slide_display_opt=='video-vimeo') { $udt_blog_image .= '<iframe src="http://player.vimeo.com/video/'.$slide_video_url.'?title=0&byline=0&portrait=0&color='.returnOptionValue('vimeo_controls_color').'&autoplay=0&loop=0" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'; } $udt_blog_image .= '</div>'; $udt_blog_image .= '</div>'; } else { $udt_blog_image = '<div class="project-display">'.get_the_post_thumbnail().'</div>'; } echo $udt_blog_image; } } else if($udt_post_meta['page_layout']=='full-width') { if($count_attachments>1) { // Check if the post has multiple images assigned to it. $udt_blog_image = '<div class="project-display fullwidth">'; $udt_blog_image .= '<div class="flexslider"><ul class="slides">'; foreach ( $attachments as $attachment ) { $slide_display_opt = get_post_meta( $attachment->ID, '_udt_slide_display_opt', true ); $slide_link_url = get_post_meta( $attachment->ID, '_udt_slide_link_url', true ); if($slide_display_opt=='slider') { $udt_blog_image .= '<li>'; if($slide_link_url!='') { $udt_blog_image .= '<a href="'.$slide_link_url.'">'; } $udt_blog_image .= wp_get_attachment_image($attachment->ID,'udt-full-width-image'); if($slide_link_url!='') { $udt_blog_image .= '</a>'; } if(wp_get_attachment_metadata($attachment->ID)) { if($attachment->post_excerpt !='') { $udt_blog_image .= '<p class="flex-caption">'.$attachment->post_excerpt.'</p>'; } else if($attachment->post_content !='') { $udt_blog_image .= '<p class="flex-caption">'.$attachment->post_content.'</p>'; } } $udt_blog_image .= '</li>'."\n"; $udt_slider_count++; } } $udt_blog_image .= '</ul></div>'; $udt_blog_image .= '</div>'; if($udt_slider_count>1) { echo $udt_blog_image; } else if($udt_slider_count==1) { $udt_blog_image = '<div class="project-display fullwidth">'; $udt_blog_image .= 'Please upload multiple images to the slider.'; $udt_blog_image .= '</div>'; echo $udt_blog_image; } else if ( has_post_thumbnail() ) { // Check if the post has a Post Thumbnail assigned to it. $udt_blog_image = ''; $slide_display_opt = get_post_meta( get_post_thumbnail_id(), '_udt_slide_display_opt', true ); $slide_video_url = get_post_meta( get_post_thumbnail_id(), '_udt_slide_video_url', true ); if($slide_display_opt=='video-youtube' || $slide_display_opt=='video-vimeo') { $udt_blog_image = '<div class="project-display fullwidth">'; $udt_blog_image .= '<div class="video" style="width:930px;height:524px;margin-bottom:0;">'; if($slide_display_opt=='video-youtube') { $udt_blog_image .= '<iframe src="http://www.youtube.com/embed/'.$slide_video_url.'?autohide=2&disablekb=0&fs=1&hd=0&loop=0&rel=0&showinfo=0&showsearch=0&wmode=transparent" frameborder="0" allowfullscreen></iframe>'; } else if($slide_display_opt=='video-vimeo') { $udt_blog_image .= '<iframe src="http://player.vimeo.com/video/'.$slide_video_url.'?title=0&byline=0&portrait=0&color='.returnOptionValue('vimeo_controls_color').'&autoplay=0&loop=0" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'; } $udt_blog_image .= '</div>'; $udt_blog_image .= '</div>'; } else { $udt_blog_image = '<div class="project-display fullwidth">'.get_the_post_thumbnail($post->ID,'udt-full-width-image').'</div>'; } echo $udt_blog_image; } } else if ( has_post_thumbnail() ) { // Check if the post has a Post Thumbnail assigned to it. $udt_blog_image = ''; $slide_display_opt = get_post_meta( get_post_thumbnail_id(), '_udt_slide_display_opt', true ); $slide_video_url = get_post_meta( get_post_thumbnail_id(), '_udt_slide_video_url', true ); if($slide_display_opt=='video-youtube' || $slide_display_opt=='video-vimeo') { $udt_blog_image = '<div class="project-display fullwidth">'; $udt_blog_image .= '<div class="video" style="width:930px;height:524px;margin-bottom:0;">'; if($slide_display_opt=='video-youtube') { $udt_blog_image .= '<iframe src="http://www.youtube.com/embed/'.$slide_video_url.'?autohide=2&disablekb=0&fs=1&hd=0&loop=0&rel=0&showinfo=0&showsearch=0&wmode=transparent" frameborder="0" allowfullscreen></iframe>'; } else if($slide_display_opt=='video-vimeo') { $udt_blog_image .= '<iframe src="http://player.vimeo.com/video/'.$slide_video_url.'?title=0&byline=0&portrait=0&color='.returnOptionValue('vimeo_controls_color').'&autoplay=0&loop=0" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'; } $udt_blog_image .= '</div>'; $udt_blog_image .= '</div>'; } else { $udt_blog_image = '<div class="project-display fullwidth">'.get_the_post_thumbnail($post->ID,'udt-full-width-image').'</div>'; } echo $udt_blog_image; } } ?> <?php the_content('',FALSE); ?> </div> <!--end ajaxpage/post--> <?php endwhile; // end of the loop. ?> </div> <!--end content--> </div> <!--end page--> <?php get_footer(); ?>
修改文件时间
将文件时间修改为当前时间的前一年
删除文件