我正在尝试输出自定义帖子类型,但没有显示任何内容。代码非常简单 - 我可能缺少什么?
<?php
$favorites = new WP_Query(array('post_type' => 'favorites', 'posts_per_page' => 10));
while ($favorites->have_posts()) : $favorites->the_post();
echo '<li><a href="' . bloginfo('template_directory') . the_post_thumbnail('large') . '" rel="thumbnail" title="<a href=\'' . simple_fields_get_post_value(get_the_id(), array(8, 3), true) . '\'>' . the_title() . '</a>"><img class="rounded" src="' . bloginfo('template_directory') . the_post_thumbnail(array(101,99)) . '" alt="' . the_title() . '" /></a></li>';
endwhile;
?>
答案 0 :(得分:2)
你检查过了吗;
<ul>
simple_fields_get_post_value()
存在且工作正常