kollapsminoriteten/wp-content/plugins/jetpack/modules/widgets/simple-payments/admin-warning.php

17 lines
553 B
PHP
Raw Normal View History

2019-11-15 23:26:29 +01:00
<div class='jetpack-simple-payments-disabled-error'>
<p>
<?php
$support_url = ( defined( 'IS_WPCOM' ) && IS_WPCOM )
2020-09-15 14:30:05 +02:00
? 'https://wordpress.com/support/pay-with-paypal/'
: 'https://jetpack.com/support/pay-with-paypal/';
2019-11-15 23:26:29 +01:00
printf(
wp_kses(
2020-09-15 14:30:05 +02:00
__( 'Your plan doesn\'t include Pay with PayPal. <a href="%s" rel="noopener noreferrer" target="_blank">Learn more and upgrade</a>.', 'jetpack' ),
2019-11-15 23:26:29 +01:00
array( 'a' => array( 'href' => array(), 'rel' => array(), 'target' => array() ) )
),
esc_url( $support_url )
);
?>
</p>
</div>