<?php
query_posts('category_name=photogallery');
if(have_posts()):
while ( have_posts()) : the_post();
$img = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID),'gallery-image');
$item = '<div class="col-lg-4">
<div class="photogallery_main_single">
<a href="'.get_permalink( $id ).'">
<img src="'.$img[0].'" alt="" class="img-responsive">
</a>
<div class="gallery_content">
<h4><a href="'.get_permalink( $id ).'">'.get_the_title().'</a></h4>
<span>'.get_the_date().' '.get_the_time().'</span>
</div><!--gallery content-->
</div><!--photogallery main single-->
</div>';
echo $item;
endwhile; endif; ?>
问题是没有前进的单一photogallery.php帮助我,如果有任何其他方式,那么请帮助
答案 0 :(得分:0)
如果您有一个名为photogallery的自定义帖子类型,那么您可以在主题中创建一个名为single-photogallery.php的文件。然后,此模板将显示photogallery
类型的所有帖子。但是,如果'photogallery'不是自定义帖子类型(例如,如果它是一个类别或分类),那么single-photogallery.php模板将不执行任何操作。