# convertkit/3.4.4/views/backend/setup-wizard/convertkit-landing-page-setup/content-start.php

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

- Page: https://pluginprobe.com/plugins/convertkit/3.4.4/code/views/backend/setup-wizard/convertkit-landing-page-setup/content-start.php
- Raw: https://pluginprobe.com/plugins/convertkit/3.4.4/raw/views/backend/setup-wizard/convertkit-landing-page-setup/content-start.php
- Modified: 2026-08-10T03:33:08+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/3.4.4/code/views/backend/setup-wizard/convertkit-landing-page-setup/content-start.php#L10-L20`.

```php
<?php
/**
 * Outputs the content for the Restrict Content Setup Wizard > Setup step.
 *
 * @package ConvertKit
 * @author ConvertKit
 */

?>

<h1><?php esc_html_e( 'Landing Page', 'convertkit' ); ?></h1>
<p>
	<?php
	esc_html_e( 'This will display a Kit landing page on the URL you specify on this WordPress web site.', 'convertkit' );
	?>
</p>

<?php
// If no non-legacy Landing Pages exist on the Kit account, show the user how to add
// one, with an option to refresh this page so that they can then select it. Legacy
// landing pages are intentionally excluded here; the wizard only offers v4 pages
// for new selections.
if ( ! $this->landing_pages->non_legacy_exist() ) {
	?>
	<p>
		<?php
		esc_html_e( 'To get started, you first need to create a landing page in Kit. Click the button below to get started.', 'convertkit' );
		?>
	</p>

	<div class="convertkit-setup-wizard-grid">
		<div>
			<a href="<?php echo esc_url( convertkit_get_new_landing_page_url() ); ?>" target="_blank" class="button button-primary button-hero">
				<?php esc_html_e( 'Create landing page', 'convertkit' ); ?>
			</a>
		</div>

		<div>
			<a href="<?php echo esc_url( $this->current_url ); ?>" class="button button-primary button-hero">
				<?php esc_html_e( 'I\'ve created a landing page in Kit', 'convertkit' ); ?>
			</a>
		</div>
	</div>		
	<?php
} else {
	?>
	<hr />
	<div>
		<label for="landing_page"><?php esc_html_e( 'Which landing page would you like to display?', 'convertkit' ); ?></label>
		<select name="landing_page" id="landing_page" class="convertkit-select2 widefat">
			<?php
			foreach ( $this->landing_pages->get_non_legacy() as $landing_page ) {
				?>
				<option value="<?php echo esc_attr( $landing_page['id'] ); ?>"><?php echo esc_attr( $landing_page['name'] ); ?></option>
				<?php
			}
			?>
		</select>
	</div>
	<div>
		<label for="post_name"><?php esc_html_e( 'Which permalink / slug should be assigned to this landing page?', 'convertkit' ); ?></label>
		<input type="text" name="post_name" id="post_name" placeholder="<?php esc_attr_e( 'my-landing-page', 'convertkit' ); ?>" class="widefat" required />
	</div>
	
	<?php
}

```
