Dashboard
PHP:
8.0.30
OS:
Linux
User:
hoozgot
/
/
home
/
hoozgot
/
www
/
miolobyjools
/
wp-content
/
plugins
/
wp-seopress
/
inc
/
admin
/
blocks
📤 Upload
📝 New File
📁 New Folder
Close
Editing: get-started.php
<?php /** * Get started block. * * @package SEOPress * @subpackage Blocks */ defined( 'ABSPATH' ) || exit( 'Please don’t call the plugin directly. Thanks :)' ); $docs = seopress_get_docs_links(); $class = '1' !== seopress_get_service( 'NoticeOption' )->getNoticeGetStarted() ? 'is-active' : ''; $notice_wizard = seopress_get_service( 'NoticeOption' )->getNoticeWizard() ? true : false; if ( ( defined( 'SEOPRESS_WL_ADMIN_HEADER' ) && SEOPRESS_WL_ADMIN_HEADER === false ) || $notice_wizard === true ) { // Do nothing. } else { ?> <div id="notice-get-started-alert" class="seopress-get-started seopress-alert deleteable <?php echo esc_attr( $class ); ?>" style="display: none"> <div class="seopress-block-wizard seopress-card-title"> <h2><?php esc_attr_e( 'Configure your SEO', 'wp-seopress' ); ?></h2> <p><?php esc_attr_e( 'Launch our installation wizard to quickly and easily configure the basic SEO settings for your site.', 'wp-seopress' ); ?></p> <p class="seopress-card-actions"> <a href="<?php echo esc_url( admin_url( 'admin.php?page=seopress-setup&step=welcome&parent=welcome' ) ); ?>" class="seopress-btn seopress-btn-primary"> <?php esc_attr_e( 'Setup in 5 mins!', 'wp-seopress' ); ?> </a> </p> </div> </div> <?php }
Save
Cancel