我有一个滑块设置,用于查询此处有产品的shopp类别:http://halliescomet.com/
这是我的代码:
<div class="flexslider-holder">
<div class="flexslider-container">
<div class="flexslider">
<ul class="slides">
<?php if( shopp(\'catalog\',\'has-categories\')) : ?>
<?php while(shopp(\'catalog\',\'categories\')): ?>
<?php
// Skip sub-categories
if (shopp(\'category\',\'parent\',\'return=1\') > 0) continue; ?>
<li>
<a href=\'<?php shopp(\'category\',\'url\'); ?>\'>
<?php shopp(\'category\',\'coverimage\',\'width=545&height=260&fit=crop\'); ?><br style="clear: both;" />
</a>
<div class=\'flex-caption\'>
<h2><?php shopp(\'category\',\'name\'); ?></h2>
<?php shopp(\'category\',\'description\'); ?>
<a class="learnmore" href="<?php shopp(\'category\',\'url\'); ?>">View All</a>
</div>
</li>
<?php endwhile; ?>
<?php endif; ?>
</ul>
<?php wp_reset_query();?>
</div>
</div>
我想做的是将其与标记为“slides”的自定义帖子类型相结合,以便我能够将非shopp内容添加到滑块。有人知道这是否可行吗?由于商店的情况不同,我不知道该怎么办。
再次感谢您的帮助。