Not directly, but calling bcn_display(true, false) and passing the result into something that strips HTML tags such as strip_tags() will probably produce a trail that doesn’t contain HTML tags so it should work within the title tag. So, in theory something like the following may work:
echo strip_tags(bcn_display(true, false));
Note I have not tried this so it may need additional code/adjustment.
Thread Starter
Turk
(@turk)
Awesome! I figured out how to use that echo command. <?php echo strip_tags(bcn_display(true, false)); ?> Did exactly what I wanted.