Is it possible to call wp_head() in a Metabox view?
<?php
wp_head();
?>
I have a theme with a front-page.php where I basically do this:
<?php
wp_head();
?>
<?php echo do_shortcode( '[mbv name="front-page"]' ); ?>
<?php
wp_footer();
?>
I was wondering if this could all be consolidated inside MB views instead of calling up front-page.php through the theme?