admin-warning.php 559 B

12345678910111213141516
  1. <div class='jetpack-simple-payments-disabled-error'>
  2. <p>
  3. <?php
  4. $support_url = ( defined( 'IS_WPCOM' ) && IS_WPCOM )
  5. ? 'https://support.wordpress.com/simple-payments/'
  6. : 'https://jetpack.com/support/simple-payment-button/';
  7. printf(
  8. wp_kses(
  9. __( 'Your plan doesn\'t include Simple Payments. <a href="%s" rel="noopener noreferrer" target="_blank">Learn more and upgrade</a>.', 'jetpack' ),
  10. array( 'a' => array( 'href' => array(), 'rel' => array(), 'target' => array() ) )
  11. ),
  12. esc_url( $support_url )
  13. );
  14. ?>
  15. </p>
  16. </div>