broker_pages.php 1.06 KB
<?php
/*
 * Template Name: Broker  Pages
 */

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
if (function_exists(clean_custom_menus())) {
    clean_custom_menus();
}
?>
        <h5 style="text-transform:uppercase;"><?php the_title();?></h5>
        <?php get_template_part('loop', 'single');?>
    </div>
</div>

<div class="new-footer-box">
<div  class="left-image-menu"><a href="<?php echo site_url(); ?>/lets-connect-info/"></a></div>
<?php wp_nav_menu(
    array(
        'theme_location' => 'broker-footer',
        'container' => 'nav',
        'container_id' => 'broker-footer',
    )
);

?>
</div>


<style>
    html {
        margin-top : 32px !important;
    }
    #page-content{
        max-width:unset !important;
    }
</style>
<?php get_footer();?>