FileMaster
Search
Toggle Dark Mode
Home
/
.
/
kiara
/
wp-content
/
plugins
/
userswp
/
templates
/
emails
Edit File: uwp-email-header.php
<?php // don't load directly if ( !defined('ABSPATH') ) die('-1'); if ( !isset( $email_vars ) ) { global $email_vars; } if ( !isset( $email_heading ) ) { global $email_heading; } ?> <!DOCTYPE html> <html dir="<?php echo is_rtl() ? 'rtl' : 'ltr'?>"> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php esc_attr( bloginfo( 'charset' ) ); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="robots" content="noindex,nofollow"> <title><?php echo esc_html( uwp_get_blogname() ); ?></title> </head> <body <?php echo is_rtl() ? 'rightmargin' : 'leftmargin'; ?>="0" marginwidth="0" topmargin="0" marginheight="0" offset="0"> <div id="wrapper" dir="<?php echo is_rtl() ? 'rtl' : 'ltr'?>"> <table border="0" cellpadding="0" cellspacing="0" height="100%" class="wrapper-table"> <?php if ( ! empty( $header_text ) ) { ?> <tr> <td align="center" valign="middle" id="template_header"> <div id="template_header_logo"> <p style="margin-top:0;"><?php echo wp_kses_post( $header_text ); ?></p> </div> </td> </tr> <?php } ?> <tr> <td align="center" valign="middle" id="template_body"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <?php if ( !empty( $email_heading ) ) { ?> <tr> <td align="center" valign="top"> <!-- Header --> <table border="0" cellpadding="0" cellspacing="0" width="100%" id="template_heading"> <tr> <td id="header_wrapper"> <h1><?php echo wp_kses_post( $email_heading ); ?></h1> </td> </tr> </table> <!-- End Header --> </td> </tr> <?php } ?> <tr> <td align="center" valign="top"> <!-- Body --> <table border="0" cellpadding="0" cellspacing="0" width="100%" id="email_body"> <tr> <td valign="top" id="body_content"> <!-- Content --> <table border="0" cellpadding="20" cellspacing="0" width="100%"> <tr> <td valign="top"> <div id="body_content_inner">
Save
Back