single-notifications.php
893 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
/*
*
*/
global $user_ID;
get_currentuserinfo();
if (!$user_ID) {
auth_redirect();
}
?>
<?php get_header("brokerlanding");
global $wpdb;
?>
<div id="brokercontent">
<div class="row">
<?php include_once('broker_sidebar.php'); ?>
</div>
<div class="row">
<?php include_once('broker_sidebar_tab.php'); ?>
</div>
<div id="page-content">
<?php get_template_part('loop', 'single'); ?>
</div>
<?php
if (function_exists(clean_custom_menus())) {
clean_custom_menus();
}
?>
</div>
</div>
<?php wp_nav_menu(
array(
'theme_location' => 'broker-footer',
'container' => 'nav',
'container_id' => 'broker-footer',
)
);
?>
<style>
html {
margin-top : 32px !important;
}
</style>
<?php get_footer(); ?>