现在,只能通过单击标题来单击我的帖子,但是我希望将整个图像链接到每个帖子。

<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友好的。

我尝试使用条目标题中的标签,并使用相同的链接将整个div包围起来,但是它不起作用。

最佳答案

这就是在HTML中完成的方式:

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

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

10-13 01:42