22 lines
425 B
PHP
22 lines
425 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The template for displaying the page subheading
|
||
|
*
|
||
|
* @package OceanWP WordPress theme
|
||
|
*/
|
||
|
|
||
|
// Exit if accessed directly.
|
||
|
if ( ! defined( 'ABSPATH' ) ) {
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
// Display subheading if there is one.
|
||
|
if ( $subheading = oceanwp_get_page_subheading() ) :
|
||
|
?>
|
||
|
|
||
|
<div class="clr page-subheading">
|
||
|
<?php echo do_shortcode( $subheading ); ?>
|
||
|
</div><!-- .page-subheading -->
|
||
|
|
||
|
<?php endif; ?>
|