Esempio n. 1
0
function premise_the_subhead($postId = null)
{
    echo apply_filters('premise_the_subhead', premise_get_subhead($postId), $postId);
}
Esempio n. 2
0
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 
}
Esempio n. 3
0
<?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 
}