Keine Beschreibung

summary-footer.php 924B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * Summary footer template.
  4. *
  5. * This template can be overridden by copying it to yourtheme/wpforms/emails/summary-footer.php.
  6. *
  7. * @since 1.6.2.3
  8. *
  9. * @version 1.6.2.3
  10. */
  11. if ( ! defined( 'ABSPATH' ) ) {
  12. exit;
  13. }
  14. ?>
  15. </td>
  16. </tr>
  17. <tr>
  18. <td align="center" valign="top" class="footer">
  19. <?php
  20. echo wp_kses(
  21. sprintf( /* translators: %1$s - link to a site; %2$s - link to the documentation. */
  22. __( 'This email was auto-generated and sent from %1$s. Learn <a href="%2$s">how to disable</a>', 'wpforms-lite' ),
  23. '<a href="' . esc_url( home_url() ) . '">' . esc_html( wp_specialchars_decode( get_bloginfo( 'name' ) ) ) . '</a>',
  24. 'https://wpforms.com/docs/how-to-use-email-summaries/#faq'
  25. ),
  26. [
  27. 'a' => [
  28. 'href' => [],
  29. ],
  30. ]
  31. );
  32. ?>
  33. </td>
  34. </tr>
  35. </table>
  36. </td>
  37. </tr>
  38. </table>
  39. </body>
  40. </html>