WordPress Template Part in iFrame
create a .php file within the root WP folder: <?php define(‘WP_USE_THEMES’, false); require(‘wp-blog-header.php’); wp_nav_menu(array(‘theme_location’ => ‘my_menu’)); // change it with your menu location ?> and call it in your .html page (as a iframe). These only gets you the menu HTML, so you’ll also need to import the theme CSS styles. Not sure how iframe … Read more