mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-06-05 15:09:37 +09:00
24 lines
690 B
PHP
24 lines
690 B
PHP
|
|
<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>
|