Hey Alex, welcome to the forum! You’re right on track and it looks like you’re correctly using that taxonomy_compare
parameter (assuming you only want to display posts that have all the taxonomy terms mentioned in the terms
parameter). The only issue I’m seeing right away, which is actually visible just based on the code highlighting here in the forum, is that you’re missing some quotes like this: terms="{Field connections}"
. This works the same way as in HTML since the spaces will be understood as separating multiple attributes.
As noted here in the getting started guide, here’s how you pass a dynamic value to an attribute or parameter:
To do this, replace the angle brackets that would usually surround a dynamic tag with curly braces. Since these attributes usually contain a space, be sure to wrap them in quotes.
Let me know if you run into any other issues!