PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.8.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.8.2
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / frm-forms / preview / header.php

header.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.8.2, at classes/views/frm-forms/preview/header.php

38 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5
6 /**
7 * This view is created to avoid deprecation warnings when previewing a form and the
8 * code in this view is mostly copied from "theme-compat/header.php"
9 *
10 * @since 6.x
11 */
12 ?>
13 <!DOCTYPE html>
14 <html <?php language_attributes(); ?>>
15 <head>
16 <link rel="profile" href="https://gmpg.org/xfn/11" />
17 <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php bloginfo( 'charset' ); ?>" />
18
19 <title><?php echo wp_get_document_title(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></title>
20
21 <link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" type="text/css" media="screen" />
22 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
23
24 <?php
25 wp_head();
26 ?>
27 </head>
28 <body <?php body_class(); ?>>
29 <div id="page">
30 <div id="header" role="banner">
31 <div id="headerimg">
32 <h1><a href="<?php echo esc_url( home_url() ); ?>/"><?php bloginfo( 'name' ); ?></a></h1>
33 <div class="description"><?php bloginfo( 'description' ); ?></div>
34 </div>
35 </div>
36 <hr />
37 <?php
38