如果这个问题已经得到回答,我提前道歉。
我是 php 和 css 的新手(可以与 html 相处)。在花了相当多的时间在谷歌和各种论坛上之后,我一直在用头撞墙试图让它工作,但到目前为止没有运气。
我的目标是使主页(http://etractorimplements.com/)滑块上的背景图像可点击链接。
这是代码:
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<!-- Item 1 -->
<?php
$args = array('posts_per_page' => '-1','category' =>22, 'orderby' => 'post_date', 'order' => 'DESC', 'post_type' => 'post');
$recent = get_posts($args);
$count = 0;
$i=1;
foreach( $recent as $post ){
$image_url= wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); ?>
<div class="item lazy slide<?php echo $i;?> <?php echo ($count == 0) ? 'active' : ''; ?>" role="list">
<div class="row">
<div class="container">
<div class="col-md-7 text-left my_res1">
<h3 data-animation="animated fadeIn"> <?php echo $post->post_title;?></h3>
<h4 data-animation="animated fadeInUp"> <?php echo $post->post_content;?></h4> </div>
<div class="col-md-5 text-right my_res2">
<!--<img data-animation="animated bounceInUp" src="img/a.png"> --></div>
</div>
</div>
</div>
<style>
#first-slider .slide<?php echo $i;
?> {
background-image: url(<?php echo $image_url;?>);
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
</style>\
我希望四个滑块中的每一个都链接到相应的类别页面(即幻灯片:1 - 沟渠连枷割草机链接到“连枷割草机”类别页面)
慕神8447489