説明なし

footer-default.php 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * Email Footer.
  4. *
  5. * @since 1.1.3
  6. */
  7. // Exit if accessed directly.
  8. if ( ! defined( 'ABSPATH' ) ) exit;
  9. $background_color = wpforms_setting( 'email-background-color', '#e9eaec' );
  10. ?>
  11. </td>
  12. </tr>
  13. </tbody>
  14. </table>
  15. </td>
  16. </tr>
  17. </tbody>
  18. </table>
  19. </td>
  20. </tr>
  21. <tr>
  22. <td valign="top" id="templateFooter" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;background-color: <?php echo $background_color; ?>;border-top: 0;border-bottom: 0;padding-top: 12px;padding-bottom: 12px;">
  23. <table border="0" cellpadding="0" cellspacing="0" width="100%" class="mcnTextBlock" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
  24. <tbody class="mcnTextBlockOuter">
  25. <tr>
  26. <td valign="top" class="mcnTextBlockInner" style="mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;">
  27. <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%" style="min-width: 100%;border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;" class="mcnTextContentContainer">
  28. <tbody>
  29. <tr>
  30. <td valign="top" class="mcnTextContent" style="padding-top: 9px;padding-right: 18px;padding-bottom: 9px;padding-left: 18px;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;word-break: break-word;color: #aaa;font-family: Helvetica;font-size: 12px;line-height: 150%;text-align: center;">
  31. <!-- Footer content -->
  32. <?php
  33. /* translators: %s - link to a site. */
  34. $footer = sprintf( esc_html__( 'Sent from %s', 'wpforms-lite' ), '<a href="' . esc_url( home_url() ) . '" style="color:#bbbbbb;">' . wp_specialchars_decode( get_bloginfo( 'name' ) ) . '</a>' );
  35. echo apply_filters( 'wpforms_email_footer_text', $footer );
  36. ?>
  37. </td>
  38. </tr>
  39. </tbody>
  40. </table>
  41. </td>
  42. </tr>
  43. </tbody>
  44. </table>
  45. </td>
  46. </tr>
  47. </table>
  48. <!--[if gte mso 9]>
  49. </td>
  50. </tr>
  51. </table>
  52. <![endif]-->
  53. <!-- // END TEMPLATE -->
  54. </td>
  55. </tr>
  56. </table>
  57. </center>
  58. </body>
  59. </html>