Skip to content
Advertisement

Posts from specific WordPress category not displaying in Timber/Twig for loop

I am using the following code to output posts from three different categories. The posts from Canada and World are being displayed correctly, but nothing from United States. I have tried dumping var_dump($context['posts']); in the WordPress PHP file, which does return the posts from all of the categories including United States. When I use Timber’s {{ dump(post) }} in the Twig template to dump {{ dump(posts.united-states) }}, the following is displayed int(0). I have tried removing the hyphen from the category slug and updating the for loop, but this did not solve the issue.

Any ideas on what is causing this issue?

PHP code

JavaScript

Twig template code

JavaScript

Advertisement

Answer

Have your tried accessing it with good old square brackets like below:

JavaScript

Quick example: https://twigfiddle.com/pbqq14

Loop example:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement