| 1 |
<?php |
| 2 |
defined('ABSPATH') || die(); |
| 3 |
remove_action('wp_head', 'print_emoji_detection_script', 7); |
| 4 |
remove_action('wp_print_styles', 'print_emoji_styles'); |
| 5 |
?> |
| 6 |
|
| 7 |
<!DOCTYPE html> |
| 8 |
<html <?php language_attributes(); ?>> |
| 9 |
|
| 10 |
<head> |
| 11 |
<title><?php bloginfo('name'); ?> | <?php echo esc_html($form->name); ?></title> |
| 12 |
<meta charset="<?php bloginfo('charset'); ?>" /> |
| 13 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
| 14 |
<?php // An admin tool rather than a page of the site, whoever reaches it. ?> |
| 15 |
<meta name="robots" content="noindex, nofollow" /> |
| 16 |
<?php wp_head(); ?> |
| 17 |
</head> |
| 18 |
|
| 19 |
<body class="hashform_preview_page"> |
| 20 |
<?php |
| 21 |
HashFormPreview::show_form($form->id); |
| 22 |
HashFormPreview::condition_hints($form->id); |
| 23 |
wp_footer(); |
| 24 |
?> |
| 25 |
</body> |
| 26 |
|
| 27 |
</html> |