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

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

- Page: https://pluginprobe.com/plugins/convertkit/2.7.5/code/views/backend/post/no-api-key.php
- Raw: https://pluginprobe.com/plugins/convertkit/2.7.5/raw/views/backend/post/no-api-key.php
- Modified: 2024-11-13T04:55:16+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/2.7.5/code/views/backend/post/no-api-key.php#L10-L20`.

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

?>

<p>
	<?php
	printf(
		'%s %s',
		esc_html__( 'For the Kit Plugin to function, please', 'convertkit' ),
		sprintf(
			'<a href="%s">%s</a>',
			esc_url( $api->get_oauth_url( admin_url( 'options-general.php?page=_wp_convertkit_settings' ), get_site_url() ) ),
			esc_html__( 'connect your Kit account.', 'convertkit' )
		)
	);
	?>
</p>

```
