Нет описания

general-footer.php 630B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * General footer template.
  4. *
  5. * This template can be overridden by copying it to yourtheme/wpforms/emails/general-footer.php.
  6. *
  7. * @since 1.5.4
  8. *
  9. * @version 1.5.4
  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. /* translators: %s - link to a site. */
  21. printf( esc_html__( 'Sent from %s', 'wpforms-lite' ), '<a href="' . esc_url( home_url() ) . '">' . esc_html( wp_specialchars_decode( get_bloginfo( 'name' ) ) ) . '</a>' );
  22. ?>
  23. </td>
  24. </tr>
  25. </table>
  26. </td>
  27. </tr>
  28. </table>
  29. </body>
  30. </html>