html-admin-notice-core-setup.php
7 years ago
html-admin-page-addons.php
2 years ago
html-admin-setup-footer.php
7 years ago
html-admin-setup-header.php
7 years ago
html-admin-setup-opt-in-usage-tracking.php
2 years ago
html-admin-setup-step-1.php
2 years ago
html-admin-setup-step-2.php
4 years ago
html-admin-setup-step-3.php
6 years ago
html-admin-notice-core-setup.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * File containing the view for displaying the admin notice when user first activates WPJM. |
| 4 | * |
| 5 | * @package wp-job-manager |
| 6 | */ |
| 7 | |
| 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | exit; |
| 10 | } |
| 11 | ?> |
| 12 | <div class="updated wpjm-message"> |
| 13 | <p> |
| 14 | <?php |
| 15 | echo wp_kses_post( __( 'You are nearly ready to start listing jobs with <strong>WP Job Manager</strong>.', 'wp-job-manager' ) ); |
| 16 | ?> |
| 17 | </p> |
| 18 | <p class="submit"> |
| 19 | <a href="<?php echo esc_url( admin_url( 'index.php?page=job-manager-setup' ) ); ?>" class="button-primary"><?php esc_html_e( 'Run Setup Wizard', 'wp-job-manager' ); ?></a> |
| 20 | <a class="button-secondary skip" href="<?php echo esc_url( wp_nonce_url( add_query_arg( 'wpjm_hide_notice', WP_Job_Manager_Admin_Notices::NOTICE_CORE_SETUP ), 'job_manager_hide_notices_nonce', '_wpjm_notice_nonce' ) ); ?>"><?php esc_html_e( 'Skip Setup', 'wp-job-manager' ); ?></a> |
| 21 | </p> |
| 22 | </div> |
| 23 |