Merge branch 'master' into deploy/prod
This commit is contained in:
commit
811ae9c3bc
2 changed files with 16 additions and 16 deletions
30
header.php
30
header.php
|
@ -6,14 +6,13 @@
|
||||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-75664743-2"></script>
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-75664743-2"></script>
|
||||||
<script>
|
<script>
|
||||||
window.dataLayer = window.dataLayer || [];
|
window.dataLayer = window.dataLayer || [];
|
||||||
function gtag(){dataLayer.push(arguments);}
|
function gtag(){dataLayer.push(arguments);}
|
||||||
gtag('js', new Date());
|
gtag('js', new Date());
|
||||||
|
|
||||||
gtag('config', 'UA-75664743-2');
|
gtag('config', 'UA-75664743-2');
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<meta charset="<?php bloginfo('charset'); ?>"/>
|
<meta charset="<?php bloginfo('charset'); ?>"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
<meta name="description" content="A collection of scripts and other content made by Graal Online players"/>
|
<meta name="description" content="A collection of scripts and other content made by Graal Online players"/>
|
||||||
|
@ -24,18 +23,19 @@
|
||||||
<body <?php body_class(); ?>>
|
<body <?php body_class(); ?>>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$curr_user = wp_get_current_user();
|
$curr_user = wp_get_current_user();
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<?php /*
|
||||||
<div class="gar-userbox">
|
<div class="gar-userbox">
|
||||||
<?php if ($curr_user->ID !== 0) : ?>
|
<?php if ($curr_user->ID !== 0) : ?>
|
||||||
<span class="gar-userbox-username"><?php echo $curr_user->user_login ?></span>
|
<span class="gar-userbox-username"><?php echo $curr_user->user_login ?></span>
|
||||||
<a href="<?php echo wp_logout_url(esc_url(home_url('/'))) ?>">Logout</a>
|
<a href="<?php echo wp_logout_url(esc_url(home_url('/'))) ?>">Logout</a>
|
||||||
<?php else : ?>
|
<?php else : ?>
|
||||||
<a href="<?php echo wp_login_url(esc_url(home_url('/'))) ?>">Login</a>
|
<a href="<?php echo wp_login_url(esc_url(home_url('/'))) ?>">Login</a>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
|
*/ ?>
|
||||||
|
|
||||||
|
|
||||||
<div id="search">
|
<div id="search">
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
searchbox = $('#searchBox')
|
searchbox = $('#searchBox')
|
||||||
|
|
||||||
initPostGrid(postGrid, '.gar-post-box');
|
initPostGrid(postGrid, '.gar-post-box');
|
||||||
initSearch('a[data-toggle=search]', search, searchbox);
|
initSearch('a[href="#search"]', search, searchbox);
|
||||||
initTinyMCE('.rte');
|
initTinyMCE('.rte');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue