PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.5
WP Coder – Insert & Manage Code Snippets v3.5
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
wp-coder / includes / pages / 4.support.php

4.support.php in WP Coder – Insert & Manage Code Snippets 3.5, at includes/pages/4.support.php

40 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Page Name: Support
4 *
5 */
6
7 use WPCoder\Dashboard\DashboardInitializer;
8 use WPCoder\Dashboard\SupportForm;
9 use WPCoder\WPCoder;
10
11 defined( 'ABSPATH' ) || exit;
12 $emil = WPCoder::info( 'email' );
13 ?>
14
15 <div class="wowp-header-wrapper">
16 <?php DashboardInitializer::header(); ?>
17
18 <div class="wowp-header-title">
19 <h2><?php esc_html_e( 'Support', 'wpcoder' ); ?></h2>
20 </div>
21
22 </div>
23
24 <div class="wrap wowp-wrap">
25 <div class="w_block w_has-border">
26
27 <p>
28 <?php printf( esc_html__( 'To get your support related question answered in the fastest timing, please send a message via the form below or write to us on email %1$s.', 'wpcoder' ), '<a href="mailto:' . sanitize_email( $emil ) . '">' . sanitize_email( $emil ) . '</a>' ); ?>
29 </p>
30
31 <p>
32 <?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'wpcoder' ); ?>
33 </p>
34
35 <?php SupportForm::init(); ?>
36
37 </div>
38 </div>
39 <?php
40