PluginProbe
Hash Form – Drag & Drop Form Builder / trunk
Hash Form – Drag & Drop Form Builder vtrunk
1.4.4 1.4.3 1.4.2 1.4.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.6.1 1.2.7 1.2.8 1.2.9 1.3.0 All 47 releases
hash-form / admin / forms / preview / preview.php

preview.php in Hash Form – Drag & Drop Form Builder trunk, at admin/forms/preview/preview.php

27 lines 843 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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>