| 1 |
<?php |
| 2 |
/** |
| 3 |
* Outputs settings screen sidebar for free plugins with |
| 4 |
* an email newsletter form. |
| 5 |
* |
| 6 |
* @package WPZinc\Shared |
| 7 |
* @author WP Zinc |
| 8 |
*/ |
| 9 |
|
| 10 |
// Exit if accessed directly. |
| 11 |
if ( ! defined( 'ABSPATH' ) ) { |
| 12 |
exit; |
| 13 |
} |
| 14 |
?> |
| 15 |
<!-- Keep Updated --> |
| 16 |
<div class="postbox"> |
| 17 |
<h3 class="hndle"> |
| 18 |
<?php esc_html_e( 'Keep Updated', 'wp-to-buffer' ); ?> |
| 19 |
</h3> |
| 20 |
|
| 21 |
<div class="wpzinc-option"> |
| 22 |
<p class="description"> |
| 23 |
<?php esc_html_e( 'Subscribe to the newsletter and receive updates on our WordPress Plugins.', 'wp-to-buffer' ); ?> |
| 24 |
</p> |
| 25 |
</div> |
| 26 |
|
| 27 |
<script async data-uid="<?php echo esc_attr( $this->base->plugin->convertkit_form_uid ); ?>" src="https://dedicated-crafter-4782.ck.page/<?php echo esc_attr( $this->base->plugin->convertkit_form_uid ); ?>/index.js"></script> |
| 28 |
</div> |
| 29 |
|