コード例 #1
0
ファイル: template-tags.php プロジェクト: juslee/e27
function premise_do_headline()
{
    if (!premise_should_have_header()) {
        return;
    }
    ?>
	<div class="headline-area">
		<h1 class="entry-title"><?php 
    the_title();
    ?>
</h1>
<?php 
    if (premise_get_subhead()) {
        ?>
		<h2 class="entry-subtitle"><?php 
        premise_the_subhead();
        ?>
</h2>
<?php 
    }
    ?>
	</div>
<?php 
}
コード例 #2
0
ファイル: headline.php プロジェクト: hscale/webento
<?php

if (premise_should_have_header()) {
    ?>
<div class="headline-area">
	<h1 class="entry-title"><?php 
    the_title();
    ?>
</h1>
	<?php 
    if (premise_get_subhead()) {
        ?>
	<h2 class="entry-subtitle"><?php 
        premise_the_subhead();
        ?>
</h2>
	<?php 
    }
    ?>
</div>
<?php 
}