Without using php, is it possible to reuse a variable from within an EE tag pair outside that tag pair? In the example below, I’d like to reuse {title} outside the scope of the {exp:channel:entries} tag pair
{exp:channel:entries channel="test" entry_id="1" limit="1"}
<?php $title = {title}; ?>
{/exp:channel:entries}
<?php echo $title; ?> // works
{title} // doesn't workAs a work around, I’ve moved the tag pair into a snippet, but I have no way of passing in parameters like the channel or entry_id. I could put the tag pair into an embed, but then I couldn’t use the returned result in a conditional if need be.