PluginProbe
GiveWP – Donation Plugin and Fundraising Platform / 4.16.9
GiveWP – Donation Plugin and Fundraising Platform v4.16.9
4.16.9 4.16.8.1 4.16.8 4.16.7.2 4.16.7.1 4.16.7 4.16.6.1 4.16.6 4.16.5.1 4.16.5 4.16.4 4.16.3 4.16.2 4.16.1 4.16.0 4.15.5 4.15.4 4.15.3 4.15.2 4.15.1 4.15.0 2.3.0 2.3.1 2.3.2 2.30.0 All 255 releases
give / src / Onboarding / Wizard / templates / index.php

index.php in GiveWP – Donation Plugin and Fundraising Platform 4.16.9, at src/Onboarding/Wizard/templates/index.php

33 lines 839 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // same as default WP from wp-admin/admin-header.php.
4 $wp_version_class = 'branch-' . str_replace(['.', ','], '-', floatval(get_bloginfo('version')));
5
6 set_current_screen();
7 ?>
8
9 <!DOCTYPE html>
10 <html <?php
11 language_attributes(); ?>>
12 <head>
13 <meta name="viewport" content="width=device-width" />
14 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
15 <title><?php
16 esc_html_e('GiveWP &rsaquo; Onboarding Wizard', 'give'); ?></title>
17 <?php
18 do_action('admin_enqueue_scripts'); ?>
19 <?php
20 do_action('admin_print_styles'); ?>
21 <?php
22 do_action('admin_print_scripts'); ?>
23 <?php
24 do_action('admin_head'); ?>
25 </head>
26 <body class="<?php
27 echo esc_attr($wp_version_class); ?>">
28 <div id="onboarding-wizard-app"></div>
29 <?php
30 do_action('admin_print_footer_scripts'); ?>
31 </body>
32 </html>
33