Meta Box
Support › MB Views › Call wp_head(); in MB ViewResolved
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 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?
Hi John,
If you want to include the header in the view, please use the WP function get_header()
get_header()
{{ mb.get_header() }}
In the view settings, please select the option "Render for: The whole page layout, including header and footer"
Awesome, Thank you!