email-footer.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?php
  2. /**
  3. * Email Footer
  4. *
  5. * This template can be overridden by copying it to yourtheme/woocommerce/emails/email-footer.php.
  6. *
  7. * HOWEVER, on occasion WooCommerce will need to update template files and you
  8. * (the theme developer) will need to copy the new files to your theme to
  9. * maintain compatibility. We try to do this as little as possible, but it does
  10. * happen. When this occurs the version of the template file will be bumped and
  11. * the readme will list any important changes.
  12. *
  13. * @see https://docs.woocommerce.com/document/template-structure/
  14. * @author WooThemes
  15. * @package WooCommerce/Templates/Emails
  16. * @version 2.3.0
  17. */
  18. if ( ! defined( 'ABSPATH' ) ) {
  19. exit; // Exit if accessed directly
  20. }
  21. ?>
  22. </div>
  23. </td>
  24. </tr>
  25. </table>
  26. <!-- End Content -->
  27. </td>
  28. </tr>
  29. </table>
  30. <!-- End Body -->
  31. </td>
  32. </tr>
  33. <tr>
  34. <td align="center" valign="top">
  35. <!-- Footer -->
  36. <table border="0" cellpadding="10" cellspacing="0" width="600" id="template_footer">
  37. <tr>
  38. <td valign="top">
  39. <table border="0" cellpadding="10" cellspacing="0" width="100%">
  40. <tr>
  41. <td colspan="2" valign="middle" id="credit">
  42. <?php echo wpautop( wp_kses_post( wptexturize( apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ) ) ) ); ?>
  43. </td>
  44. </tr>
  45. </table>
  46. </td>
  47. </tr>
  48. </table>
  49. <!-- End Footer -->
  50. </td>
  51. </tr>
  52. </table>
  53. </td>
  54. </tr>
  55. </table>
  56. </div>
  57. </body>
  58. </html>