Exemplo n.º 1
0
<?php

/**
 * Template Name: Bryggjan FrontPage
 *
 * @package Total WordPress Theme
 * @subpackage Templates
 */
// Get site header
get_header();
?>

    <div id="content-wrap" class="container clr">

        <?php 
wpex_hook_primary_before();
?>

        <div id="primary" class="content-area clr">

            <?php 
wpex_hook_content_before();
?>

            <div id="content" class="clr site-content" role="main">

                <?php 
wpex_hook_content_top();
?>

                <?php 
Exemplo n.º 2
0
        /**
         * Before main content wrapper
         *
         * @since 3.0.8
         */
        public function before_main_content()
        {
            ob_start();
            ?>

			<div id="content-wrap" class="container clr">

				<?php 
            wpex_hook_primary_before();
            ?>

				<div id="primary" class="content-area clr">

					<?php 
            wpex_hook_content_before();
            ?>

					<div id="content" class="site-content clr">

						<?php 
            wpex_hook_content_top();
            ?>
			
			<?php 
            echo ob_get_clean();
        }