I’m trying to get variables (ee and/or php) inside of ee tags and having no luck.
Example 1:
{assign_variable:wsn_body='{weblog_short_name}_body'}
{exp:weblog:entries limit="1" disable="member_data|trackbacks"}
{wsn_body}
{/exp}Example 2:
<?php
$wsn_images='{weblog_short_name}_images';
?>
{exp:weblog:entries limit="1" disable="member_data|trackbacks"}
{<?=$wsn_images?>}
<a href="http://{file_url}">{file_url}</a>
{/<?=$wsn_images?>}
{/exp}These will only print out the variable text, and not associate them with custom weblog fields.
Does anyone have a suggestion?