我正在使用下面的循环来拉我的帖子,在div周围环绕着a,以确保它在单击时链接到帖子。
<?php $query = new WP_Query( array(
\'post_type\' => \'post\',
\'posts_per_page\' => 6
));
while ($query->have_posts()) : $query->the_post(); ?>
<div class="carousel-cell" data-flickity-bg-lazyload="<?php the_field(\'banner_afbeelding\'); ?>">
<a href="<?php the_permalink();?>">
<div class="inner-wrap">
<div class="box">
<div class="inner">
<h3><?php the_title(); ?></h3>
<h4><?php the_category(\'\'); ?></h4>
</div>
</div>
</div>
</a>
</div>
这是我得到的HTML输出:
<div class="carousel-cell is-selected flickity-bg-lazyloaded" style="position: absolute; left: 0%; background-image: url("https://puranenschilder-totaalonderhoud.nl/wp-content/uploads/2021/02/2-bas-H.jpg");">
<a href="https://puranenschilder-totaalonderhoud.nl/rozengracht/"></a>
<div class="inner-wrap">
<a href="https://puranenschilder-totaalonderhoud.nl/rozengracht/"></a>
<div class="box">
<a href="https://puranenschilder-totaalonderhoud.nl/rozengracht/"></a>
<div class="inner"><a href="https://puranenschilder-totaalonderhoud.nl/rozengracht/"></a>
<h3><a href="https://puranenschilder-totaalonderhoud.nl/rozengracht/"></a><a href="https://puranenschilder-totaalonderhoud.nl/rozengracht/">Rozengracht</a></h3>
<h4>
<ul class="post-categories">
<li>
<a href="https://puranenschilder-totaalonderhoud.nl/category/buitenschilderwerk/" rel="category tag">Buitenschilderwerk</a>
</li>
</ul>
</h4>
</div>
</div>
</div>
SO网友:Akash Singh
如果您使用get_permalink() 然后您需要使用echo和the_permalink() 你不习惯回声。
<?php the_permalink(); ?>
<?php echo get_permalink(); ?>
代码:-
<div class="carousel-cell" data-flickity-bg-lazyload="<?php the_field(\'banner_afbeelding\'); ?>">
<a href="<?php the_permalink();?>">
<div class="inner-wrap">
<div class="box">
<div class="inner">
<h3><?php the_title(); ?></h3>
<h4><?php the_category(\'\'); ?></h4>
</div>
</div>
</div>
</a>
</div>