You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
300 B
PHP
19 lines
300 B
PHP
<?php
|
|
/**
|
|
* General body template (plain text).
|
|
*
|
|
* This template can be overridden by copying it to yourtheme/wpforms/emails/general-body-plain.php.
|
|
*
|
|
* @since 1.5.4
|
|
*
|
|
* @version 1.5.4
|
|
*
|
|
* @var string $message
|
|
*/
|
|
|
|
if ( ! \defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
echo \wp_kses_post( $message );
|