我想在Timber中渲染这个循环。我可以帮忙吗?
$query = get_posts(array('post_type' => 'lexique','posts_per_page' => -1));
$by_letter = array();
while( $query->have_posts() ) { $query->the_post();
global $post;
$letter = substr($post->post_name, 0, 1);
if ( ! isset($by_letter[$letter]) ) $by_letter[$letter] = array();
$by_letter[$letter][] = $post;
}
wp_reset_postdata();
所以用木材附上这个循环
$context = Timber::get_context();
Timber::render('lexique.twig', $context);
但我不知道这样做。
答案 0 :(得分:-1)
$context = Timber::get_context();
$context['post'] = new TimberPost();
Timber::render('lexique.twig', $context);
你的lexique.twig文件是:
<article>
<h1 class="headline">{{post.post_title}}</h1>
<div class="body">
{{post.content}}
</div>
</article>