0

投稿の注目画像をカテゴリページのフルサイズバージョンにリンクするにはどうすればよいですか?

これが私のcategory.phpのループです:

    <h1>Professional Portfolio Gallery - <?php single_cat_title(); ?></h1>
    <p><?php echo category_description(); ?></p>
    <?php if (have_posts()) : ?>
    <ul class="portfolio">
    <?php while (have_posts()) : the_post(); ?>
    <li>
    <?php 
    if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
    the_post_thumbnail();
    } 
    ?>
    <?php the_excerpt(); ?></li>
    <?php endwhile; ?>
    </ul>   
    <?php wp_paging(); ?>
    <?php else : ?>

    <h1>Not Found</h1>
    <p><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>

    <?php endif; ?> 

どんな助けでもいただければ幸いです!

4

1 に答える 1

3

投稿サムネイルをフルサイズバージョンにリンクするには、次を使用できる必要があります。

<?php 
  if ( has_post_thumbnail()) {
  $full_image_url = wp_get_attachment_image_src( get_post_thumbnail_id(), 'full');
  echo '<a href="' . $full_image_url[0] . '" title="' . the_title_attribute('echo=0') . '" >';
  the_post_thumbnail('thumbnail');
  echo '</a>';
}
?>

このリダイレクトの詳細については、http: //codex.wordpress.org/Function_Reference/the_post_thumbnailをご覧ください。

お役に立てば幸いです。

于 2013-02-19T05:21:14.923 に答える