示例#1
0
<?php

/*
 Template Name: Home Page TPl
*/
/**
 * theme page functions
 * just made more sense putting it here to me...
 * other options - use wp conditionals or load on every page
 * i try to avoid conditionals where ever i can
 * i dont have to go through a function file with 100s line of code
 * ...
 */
get_header('tbs');
cwp_layout::the_header('tbs');
?>
<section id="feature" >
    <div class="container">
        <div class="row">
            <div class="span12 columns">
                <div class="feature-image">
                    <h1>
                        <?php 
echo $cpt_options->the_headline_copy();
?>
                    </h1>
                    <!-- class content -->
                </div>
            </div>
        </div>
        <!-- container -->
示例#2
0
<?php

/*
 Template Name: Home Page TPl
*/
/**
 * theme page functions
 * just made more sense putting it here to me...
 * other options - use wp conditionals or load on every page
 * i try to avoid conditionals where ever i can
 * i dont have to go through a function file with 100s line of code
 * ...
 */
get_header();
cwp_layout::the_header();
?>
<section id="feature" >
    <div class="container">
        <div class="row">
            <div class="twelve columns">
                <div class="feature-image">
                    <h1>
                        <?php 
echo $cpt_options->the_headline_copy();
?>
                    </h1>
                    <!-- class content -->
                </div>
            </div>
        </div>
        <!-- container -->