I’m an EE noob, but have a lot of experience working with Drupal, Wordpress, and back in the day I rolled my own CMS quite a bit. I’ve done some hunting around the forums, wiki, and user guide and have struck out finding an answer for a pretty basic question (which may be way I’ve struck out).
I just want to filter the entries of a channel based on a key/value pair.
This is my channel code in the template:
{exp:channel:entries channel="boxes" limit="3"}I just want to add something like “WHERE position=“left”. The expression engine equivalent to:
SELECT * FROM somewhere WHERE something="boxes" AND position="left" LIMIT 3Position is a channel field (select list) with options for left, middle, and right.