forked from syamilmj/Supportte
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtopbar.php
More file actions
28 lines (22 loc) · 651 Bytes
/
Copy pathtopbar.php
File metadata and controls
28 lines (22 loc) · 651 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/** Top Bar */
?>
<div id="topbar">
<div class="inner">
<div class="left">
Welcome to Aquagraphite Support Forum :)
</div>
<div class="right">
<?php
if(is_user_logged_in()) {
echo '<a href="' . bbp_get_user_profile_edit_url( bbp_get_user_id('', false, true) ) .'">Edit Profile</a> or ';
echo '<a href="' . wp_logout_url($redirect = home_url()) .'">Logout</a>';
} else {
echo '<a href="' .wp_login_url($redirect = home_url(), $force_reauth = false) .'">Login</a> or ';
echo '<a href="' .wp_login_url() . '?action=register">Register</a>';
}
?>
</div>
<div class="clearfix"></div>
</div>
</div>