我是PHP的初学者,也许有人可以帮助我...
我有这个滑块,当我在其中使用不同的图像时,它会起作用:
<a id="prev1">prev</a><a id="next1">next</a>
<div id="slider">
<img src="/images-custom/telephone-icon.jpg"/>
<img src="/images-custom/mail-icon.jpg"/>
<img src="/images-custom/linkedin-icon.jpg"/>
</div>
但我想使用自定义循环来显示自定义字段和滑块中的永久链接,而不是使用图像。
这是我的循环:
<?php
$catquery1 = new WP_Query( 'cat=9&posts_per_page=1&orderby=date&order=ASC' );
while($catquery1->have_posts()) : $catquery1->the_post(); ?>
<?php the_field('slogan_dactualites_sur_la_page_accueil'); ?>
<?php if($GLOBALS['q_config']['language']=="en"){ ?>
<a href="<? the_permalink(); ?>">Read more</a>
<?php }else{ ?>
<a href="<? the_permalink(); ?>">Lire la suite</a>
<?php } ?>
<?php endwhile; ?>
如果有人可以帮助我,我会非常感激! 感谢
答案 0 :(得分:0)
由于您还没有说出您正在使用的滑块,并且无法辨别此滑块的限制,我的代码完全没有测试或保修。
<a id="prev1">prev</a><a id="next1">next</a>
<div id="slider">
$catquery1 = new WP_Query( 'cat=9&posts_per_page=1&orderby=date&order=ASC' );
while($catquery1->have_posts()) : $catquery1->the_post(); ?>
<div class="slider-element">
<?php the_field('slogan_dactualites_sur_la_page_accueil'); ?>
<?php if($GLOBALS['q_config']['language']=="en"){ ?>
<a href="<? the_permalink(); ?>">Read more</a>
<?php }else{ ?>
<a href="<? the_permalink(); ?>">Lire la suite</a>
<?php } ?>
</div>
<?php endwhile; ?>
</div>