-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
44 lines (39 loc) · 1.78 KB
/
header.php
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE HTML>
<html><head>
<meta charset="utf-8">
<title><?php bloginfo('name'); ?><?php wp_title('|',true); ?></title>
<link type="text/css" rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/style.css?v1">
<?php wp_head();
global $giris_yapan_kullanici;
$giris_yapan_kullanici = wp_get_current_user();
?>
</head><body>
<div class="header">
<div class="header-ust">
<div class="header-ust-ic">
<a href="<?php bloginfo('url'); ?>" class="header-ust-logo">
<span class="a1">Eğitim</span>Alem.com
</a>
<span class="header-beta">beta</span>
<?php if (is_user_logged_in()){ ?>
<a href="<?php bloginfo('url'); ?>/uye/<?php echo $giris_yapan_kullanici->user_login ?>" class="header-profil">
<?php echo get_avatar( $giris_yapan_kullanici->user_email, $size = '40', $default = 'http://www.egitimalem.com/wp-content/themes/egitimalem.com/img/avatar.jpg' ); ?>
<?php echo $giris_yapan_kullanici->user_firstname.' '.$giris_yapan_kullanici->user_lastname; ?>
</a>
<?php } else { ?>
<?php }?>
</div>
</div>
<div class="header-menu">
<div class="header-menu-ic">
<?php wp_nav_menu( array( 'theme_location' => 'ust_menu' ) ); ?>
<?php if (is_user_logged_in()){ ?>
<?php } else { ?>
<div class="header-profil">
<a href="http://www.egitimalem.com/wp-login.php?action=register" class="p1">Kayıt</a>
<a href="<?php echo wp_login_url( home_url() ); ?>" class="p2">Giriş</a>
</div>
<?php }?>
</div>
</div>
</div>