"> -6ren">
gpt4 book ai didi

html - 如何使整个图像在我的 wordpress.org 网站上可点击?

转载 作者:行者123 更新时间:2023-11-28 16:27:00 25 4
gpt4 key购买 nike

现在我的帖子只能通过点击标题来点击,但我希望整个图片都链接到每个单独的帖子。

<article id="post-<?php the_ID(); ?>" <?php post_class('card-box col-lg-4 col-md-6 col-sm-12 col-xs-12'); ?>>
<div class="card" data-background="image" data-src="<?php esc_url( the_post_thumbnail_url( 'large' ) ); ?>">
<div class="header">
<?php
$categories = get_the_category();
if ( ! empty( $categories ) ) {
?>
<div class="category">
<h6>
<span class="category">
<?php echo '<a class="category" href="' . esc_url( get_category_link( $categories[0]->term_id ) ) . '">' . esc_html( $categories[0]->name ) . '</a>'; ?>
</span>
</h6>
</div>
<?php } ?>
</div>
<div class="content">
<?php the_title( '<h4 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h4>' ); ?>
<span class="date"><?php echo esc_html( get_the_date() ); ?></span>
</div>
<div class="filter"></div>
</div> <!-- end card -->
</article>

我不想使用 js,因为有人告诉我这对 SEO 不友好。

我试过使用 entry-title 中的标签并用相同的链接包围整个 div,但它没有用。

最佳答案

这就是 HTML 中的做法:

<a href="...">
<img alt="..." src="..." />
</a>

关于html - 如何使整个图像在我的 wordpress.org 网站上可点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43058846/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com