# learnpress/4.1.7.3.2/inc/admin/views/admin-notices/permalink-wrong.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.1.7.3.2. 32 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.1.7.3.2/code/inc/admin/views/admin-notices/permalink-wrong.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.1.7.3.2/raw/inc/admin/views/admin-notices/permalink-wrong.php
- Modified: 2022-11-17T10:03:10+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/learnpress/4.1.7.3.2/code/inc/admin/views/admin-notices/permalink-wrong.php#L10-L20`.

```php
<?php
/**
 * Template for display error wrong permalink structure.
 *
 * @since 3.0.0
 * @version 1.0.1
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

if ( ! isset( $data ) || ! isset( $data['check'] ) ) {
	return;
}

if ( ! $data['check'] ) {
	return;
}
?>

<div class="lp-admin-notice">
	<p>
		<?php
		echo sprintf(
			'LearnPress requires permalink option <strong>Post name</strong> is enabled. Please enable it <a href="%s">here</a> to ensure that all functions work properly.',
			admin_url( 'options-permalink.php' )
		)
		?>
	</p>
</div>

```
