簡體   English   中英

如何在Wordpress中將帖子鏈接添加到縮略圖?

[英]How to add post link to thumbnail in wordpress?

我在index.php中使用以下循環來顯示帶有縮略圖的帖子:

 <main id="main"> <?php // the query $args = array('posts_per_page' => 10 ); $the_query = new WP_Query( $args ); ?> <?php if ( $the_query->have_posts() ) { ?> <!-- loop --> <?php while ( $the_query->have_posts() ) { $the_query->the_post(); ?> <article id="post"> <div id="thumbnail"> <?php if ( has_post_thumbnail() ) { ?> <?php the_post_thumbnail(); } ?> </div> <h2><a href="<?php the_permalink();?>"><?php the_title(); ?></a></h2> <div class="entry"> <?php the_excerpt(); ?> </div> </article> <?php } } else { ?> <p><?php _e( 'Die Posts entsprechen nicht den Kriterien.' ); ?></p> <?php } ?> <!-- end of the loop --> <?php wp_reset_postdata(); ?> </main> 

如何在縮略圖上添加永久鏈接? 用戶單擊它時,應將其定向到該帖子。 目前,沒有任何反應。

感謝您的回答。

編輯:我添加了整個循環,因為Deepti的答案會產生錯誤。 也許有人可以幫助我。

<?php if ( has_post_thumbnail() ) : ?>
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
    <?php the_post_thumbnail(); ?>
</a>
<?php endif; ?>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM