How can I add 'cache' => false, when calling a block from the body field of a page?
Doing this in the template is straight-forward:
<?php echo fuel_block(array('view' => 'my-block', 'cache' => FALSE)); ?>
But I'm not sure how to do it when loading a block from the body field on a page
{fuel_block('my-block')}
Comments
<?=fuel_block(array('view' => 'my-block', 'cache' => FALSE)); ?>