# convertkit/1.9.8.0/views/backend/post/no-api-key.php

Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages, version 1.9.8.0. 21 lines.

- Page: https://pluginprobe.com/plugins/convertkit/1.9.8.0/code/views/backend/post/no-api-key.php
- Raw: https://pluginprobe.com/plugins/convertkit/1.9.8.0/raw/views/backend/post/no-api-key.php
- Modified: 2021-12-15T14:20:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/convertkit/1.9.8.0/code/views/backend/post/no-api-key.php#L10-L20`.

```php
<?php
/**
 * Outputs a message in the metabox when no API Key is defined.
 *
 * @package ConvertKit
 * @author ConvertKit
 */

?>

<p>
	<?php
	echo sprintf(
		/* translators: %1$s: Post Type Singular Name, %2$s: Link to Plugin Settings */
		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' ),
		esc_attr( $post_type->labels->singular_name ),
		'<a href="' . esc_attr( convertkit_get_settings_link() ) . '">' . esc_html__( 'Plugin Settings', 'convertkit' ) . '</a>'
	);
	?>
</p>

```
