admin管理员组文章数量:1125972
I have a script responsible for the layout on a Wordpress page using the Traveler theme. I modified the order so that additional attributes appear below the description rather than at the bottom.
The current layout looks approximately like this:
- Description
- Attribute
- Second attribute
- Section 3
I would like to achieve the following effect:
- Description
- Attribute
- Section 3
- Second attribute
However, I am not proficient in PHP. The script responsible for this looks as follows:
...
<?php echo stt_elementorv2()->loadView('services/tour/single/item/infor', array('tour_type' => $tour_type)); ?>
<div class="st-hr"></div>
<?php echo stt_elementorv2()->loadView('services/common/single/description') ?>
<div id="st-attributes">
<?php echo stt_elementorv2()->loadView('services/common/single/attributes',['post_type' => 'st_tours']) ?>
</div>
<?php echo stt_elementorv2()->loadView('services/tour/single/item/highlights') ?>
<?php echo stt_elementorv2()->loadView('services/tour/single/item/include-exclude') ?>
<?php echo stt_elementorv2()->loadView('services/tour/single/item/itenirary',['post_id'=>$post_id]) ?>
<?php echo stt_elementorv2()->loadView('services/tour/single/item/faq',['post_id'=>$post_id]) ?>
<?php echo stt_elementorv2()->loadView('services/tour/single/item/location',['post_id'=>$post_id]) ?>
<?php echo stt_elementorv2()->loadView('services/tour/single/item/discount'); ?>
<?php echo stt_elementorv2()->loadView('services/tour/single/item/review',['post_id' => $post_id]); ?>
<div class="stoped-scroll-section"></div>
</div>
...
Is it possible to achieve this effect?
本文标签: Issue with modifying attributes on a Wordpress website (PHP)
版权声明:本文标题:Issue with modifying attributes on a Wordpress website (PHP) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736677184a1947243.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论