我一直在使用高级自定义字段插件构建我的第一个WordPress主题。以下是我迄今为止采取的步骤:
通过函数创建自定义帖子类型。php创建了存档产品。php和自定义循环创建了单个产品。php和定制一切都很好!
我想显示存档产品。php,所以我创建了一个页面模板。我已经尽我所能让它工作,但结果是一片空白。
我花了很多时间寻找解决方案,但我真的走到了死胡同。我总是想找到自己的解决方案,但在这种情况下,我需要朝着正确的方向努力。非常感谢您的提示、教程链接或建议。
非常感谢。
以下是我在页面模板上尝试的循环:
<!-- Begin loop -->
<?php
$args = array(
\'post_type\' => \'productions_cpt\'
)
);
?>
<?php $counter =0; ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php
++$counter;
if($counter == 4) {
$postclass = \' last\';
$counter = 0;
} else { $postclass = \'\'; }
?>
<div class="thumb<?php echo $postclass; ?>">
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail(); ?></a>
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
</div>
<?php endwhile; else: ?>
<p><?php _e(\'Sorry, no productions matched your criteria.\'); ?></p>
<?php endif; ?>
<!-- End loop -->