好的,首先我不知道我在这里想要完成的事情的正确术语。但这似乎很简单,只是不容易。
我正在使用原始的for循环来处理joomla mod_article_news覆盖。 问题是,我需要将输出分成两个不同的位置,例如:
<service_container>
<services_carousel>
<!-- PHP for loop starts here -->
<service_block>
Image and title
<service_block>
<!-- for loop ends here -->
</services_carousel>
<service_details>
<details_list>
<!-- I need the same For loop to output here at the same time -->
<li>Intro text and Readmore button</li>
</details_list>
</service_details>
</service_container>
如果你看看,你可以看到我在service_block中有介绍图像和标题,而介绍文本和readmore按钮在service_details中。
这里的功能基本上是介绍图像和标题栏,当用户将鼠标悬停在每个块上时,下面的全宽容器将显示相关的介绍文本。
原始for循环如下所示:
<?php for ($i = 0, $n = count($list); $i < $n; $i ++) : ?>
<?php $item = $list[$i]; ?>
如果有人可以告诉我正确的术语,那也会很棒! =)
提前感谢您的任何帮助和建议。