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

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

- Page: https://pluginprobe.com/plugins/wp-coder/trunk/code/includes/pages/7.support.php
- Raw: https://pluginprobe.com/plugins/wp-coder/trunk/raw/includes/pages/7.support.php
- Modified: 2025-03-28T10:51:52+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/7.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">

		<?php DashboardInitializer::header(); ?>

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

        <div class="wowp-settings__header m-w-48">

            <div class="wowp-fieldset">
                <div class="wowp-fieldset__header">
                    <div class="wowp-fieldset__header-title">
						<?php esc_html_e( 'Send a Message to Support', 'wp-coder' ); ?>
                        <p><?php printf(
	                        // phpcs:disable WordPress.Security.EscapeOutput.OutputNotEscaped
	                        /* translators: 1. support email */
                                __( 'For a faster response, please describe your issue below or email us at %1$s.', 'wp-coder' ), '<a href="mailto:' . esc_attr( $emil ) . '">' . esc_attr( $emil ) . '</a>' );
	                        // phpcs:enable
                        ?></p>
                    </div>
                </div>
				<?php SupportForm::init(); ?>
            </div>

        </div>

    </div>
<?php

```
