I want to get the template path to print in this echo of a form in the admin.
Here is what I got:
< ?php echo of_get_option('splash_img_transition', 'bloginfo('template_url')+/images/large/chalk.jpg' ); ?>
The second parameter there is a placeholder if nothing is input into the field that I am echoing.
Normally the echo works like this: < ?php echo of_get_option('splash_img_transition', 'no entry' ); ?>
And of course the WP tag < ?php bloginfo('template_url'); ?>
I'm just trying to combine the two so that the default (if the user does not input anything) will be a path to a placeholder image.
Thanks for any help!