Files
2026-04-23 04:33:43 +03:30

14 lines
716 B
PHP

<?php
defined( 'ABSPATH' ) || exit;
?>
<h2 class="nav-tab-wrapper">
<?php
printf( '<a href="%s" class="nav-tab">%s</a>', admin_url( 'admin.php?page=upstudy-admin-menu' ), esc_html__( 'Dashboard', 'upstudy' ) );
printf( '<a href="%s" class="nav-tab">%s</a>', admin_url( 'customize.php' ), esc_html__( 'Theme Options', 'upstudy' ) );
?>
</h2>
<div class="upstudy-section nav-tab-active" id="activate-theme">
<p><?php esc_html_e( 'Theme is ready to use. Go to Customizer to customize your site.', 'upstudy' ); ?></p>
<a href="<?php echo admin_url( 'customize.php' ); ?>" class="button button-primary"><?php esc_html_e( 'Go to Customizer', 'upstudy' ); ?></a>
</div>