コード例 #1
0
 * @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 
while (have_posts()) {
    the_post();
    ?>

                    <article class="entry-content entry clr">
コード例 #2
0
ファイル: sensei.php プロジェクト: iq007/MadScape
        /**
         * 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();
        }