# wp-coder/trunk/includes/pages/4.support.php

WP Coder – Insert &amp; Manage Code Snippets, version trunk. 43 lines.

- Page: https://pluginprobe.com/plugins/wp-coder/trunk/code/includes/pages/4.support.php
- Raw: https://pluginprobe.com/plugins/wp-coder/trunk/raw/includes/pages/4.support.php
- Modified: 2024-10-28T11:32:58+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-coder/trunk/code/includes/pages/4.support.php#L10-L20`.

```php
<?php
/**
 * Page Name: Support
 *
 */

use WPCoder\Dashboard\DashboardInitializer;
use WPCoder\Dashboard\SupportForm;
use WPCoder\WPCoder;

defined( 'ABSPATH' ) || exit;
$emil = WPCoder::info( 'email' );
?>

    <div class="wowp-header-wrapper">
		<?php DashboardInitializer::header(); ?>

        <div class="wowp-header-title">
            <h2><?php esc_html_e( 'Support', 'wp-coder' ); ?></h2>
        </div>

    </div>

    <div class="wrap wowp-wrap">
        <div class="w_block w_has-border">

            <p>
	            <?php
	            esc_html_e( 'To get your support related question answered in the fastest timing, please send a message via the form below or write to us via', 'wp-coder' );
	            echo ' <a href="https://wordpress.org/support/plugin/wp-coder/" target="_blank">' . esc_html__( 'support page', 'wp-coder' ) . '</a>';
	            ?>
            </p>

            <p>
				<?php esc_html_e( 'Also, you can send us your ideas and suggestions for improving the plugin.', 'wp-coder' ); ?>
            </p>

			<?php SupportForm::init(); ?>

        </div>
    </div>
<?php

```
