Files
m5wp.momentry.ddns.net/plugins/wpforms-lite/templates/emails/summary-footer-plain.php
OpenCode 09ef1f000f Initial commit: WordPress wp-content (themes, plugins, languages)
- Theme: momentry (custom theme with REST API routes)
- Plugins: code-snippets (contains all API proxies)
- Languages: zh_TW translations
- Excludes: cache, backups, uploads, logs
2026-05-29 19:07:56 +08:00

27 lines
849 B
PHP

<?php
/**
* Summary footer template (plain text).
*
* This template can be overridden by copying it to yourtheme/wpforms/emails/summary-footer-plain.php.
*
* @since 1.6.2.3
*
* @version 1.6.2.3
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
echo "\n---\n\n";
printf( /* translators: %s - link to the site. */
esc_html__( 'This email was auto-generated and sent from %s.', 'wpforms-lite' ),
esc_html( wp_specialchars_decode( get_bloginfo( 'name' ) ) )
);
echo "\n";
printf( /* translators: %1$s - link to Settings -> Misc tab in plugin, %2$s - link to the documentation. */
esc_html__( 'If you want to disable these weekly emails, open %1$s, or read the guide %2$s.', 'wpforms-lite' ),
esc_html( admin_url( 'admin.php?page=wpforms-settings&view=misc' ) ),
'https://wpforms.com/docs/how-to-use-email-summaries/#disable-email-summaries'
);