mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-18 14:13:46 +09:00
Improved load time
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
|
||||
<h1>Welcome to Ultimate Member</h1>
|
||||
|
||||
<div class="about-text">Thank you for installing! Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress.</div>
|
||||
|
||||
<div class="wp-badge um-badge">Version <?php echo ULTIMATEMEMBER_VERSION; ?></div>
|
||||
|
||||
<h2 class="nav-tab-wrapper">
|
||||
|
||||
<?php foreach( $um_admin->about_tabs as $k => $tab ) {
|
||||
|
||||
if ( $k == $template ) {
|
||||
$active = 'nav-tab-active';
|
||||
} else {
|
||||
$active = '';
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
<a href="<?php echo admin_url('admin.php?page=ultimatemember-' . $k); ?>" class="nav-tab <?php echo $active; ?>"><?php echo $tab; ?></a>
|
||||
|
||||
<?php } ?>
|
||||
|
||||
</h2>
|
||||
Reference in New Issue
Block a user