Home › Forums › Bug Reports › Can't use "acf" variable in my app! › Reply To: Can't use "acf" variable in my app!
It’s possible that the $context
already contains an ACF object with the key acf
and your code overwrites it. This will then destroy any subsequent use of $context['acf']
which Timber (or your Theme) needs.
Try using a different key in your own code ($context['my_acf']
) and see whether that helps, or just do a var_dump
of $context['acf']
before the first line of code in your example, to see whether it already exists. Timber objects/context already have a lot of data in them, which you might not know already exists.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.