| 1 |
<?php |
| 2 |
/** |
| 3 |
* Outputs a message in the metabox when no API Key is defined. |
| 4 |
* |
| 5 |
* @package ConvertKit |
| 6 |
* @author ConvertKit |
| 7 |
*/ |
| 8 |
|
| 9 |
?> |
| 10 |
|
| 11 |
<p> |
| 12 |
<?php |
| 13 |
printf( |
| 14 |
/* translators: %1$s: Post Type Singular Name, %2$s: Link to Plugin Settings */ |
| 15 |
esc_html__( 'To configure the ConvertKit Form / Landing Page to display on this %1$s, enter your ConvertKit API credentials in the %2$s', 'convertkit' ), |
| 16 |
esc_attr( $post_type->labels->singular_name ), |
| 17 |
'<a href="' . esc_url( convertkit_get_settings_link() ) . '">' . esc_html__( 'Plugin Settings', 'convertkit' ) . '</a>' |
| 18 |
); |
| 19 |
?> |
| 20 |
</p> |
| 21 |
|