嘿,伙计们,我有一个我一直在建立的电子商务网站,他们决定在每个产品中都有一个贝宝账单我的标志,他们大约有 900 个。所以我刚刚创建了一个背景图像,放置在添加购物车按钮的下方。我这样做是为了不必通过 900 多种产品来整合自己。
那么我可以创建一些代码或其他东西来链接它吗?这将是一个通用链接,对于每个产品上的每个图像都是相同的。
CSS 代码:
.singular .pricing {
padding-left:0;
padding-bottom: 4em;
background-image: url(http://www.prodjsoundlighting.com/wp-content/uploads/2012/12/render.png);
background-position: bottom left;
background-repeat: no-repeat;
background-size: 15em;
}
所以我想把上面的背景图片创建成一个可点击的链接,而不是进入每个产品并为它创建一个链接。
圣诞节快乐!!!
更新:
示例 HTML
<div class="prodslideshow">
<div class="slidecontainer">
[superzoomgallery]
</div>
</div>
<div class="item-post"><a href="/">
<div class="prod-image-cont">
<img src="" alt="" width="145px" height="160px" />
</div></a>
<div class="discription"></div>
<div class="pricing">
<h2 class="producthover"></h2>
<h2></h2>
[wp_cart:led-par-56-24-uvb:price:329.99:end]
</div>
</br></br></br></br></br>
<div class="prodinfo">
<h3 style="color:black; font-weight:bold;">About:<br/></h3>
<br/>
<h3 style="color:black; font-weight:bold;">Features:<br/></h3>
<br/>
<h3 style="color:black; font-weight:bold;">Specifications:<br/></h3>
</div>
</div>
背景图像位于此处:
<div class="pricing">
<h2 class="producthover"></h2>
<h2></h2>
[wp_cart:led-par-56-24-uvb:price:329.99:end]
</div>
这是每个单独产品的 HTML 模板。
每个产品的 HTML 模板都会影响每个产品:
<div id="primary">
<div id="content" role="main">
<div class="singlepostcontent">
<?php while ( have_posts() ) : the_post(); ?>
<nav id="nav-single">
<h3 class="assistive-text"><?php _e( 'Post navigation', 'twentyeleven' ); ?></h3>
<span class="nav-previous"><?php previous_post_link( '%link', __( '<span class="meta-nav">←</span> Previous', 'twentyeleven' ) ); ?></span>
<span class="nav-next"><?php next_post_link( '%link', __( 'Next <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?></span>
</nav><!-- #nav-single -->
<?php get_template_part( 'content', 'single' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- .singlepostcontent -->
</div><!-- #content -->
</div><!-- #primary -->