Skip to content

Instantly share code, notes, and snippets.

@akther80
Created December 16, 2015 06:54
Show Gist options
  • Save akther80/74d20017480d789f2eb2 to your computer and use it in GitHub Desktop.
Save akther80/74d20017480d789f2eb2 to your computer and use it in GitHub Desktop.
custom ministry heading bethlehem
remove_action( 'ministries_before_archive_content','ministries_head', 10 );
add_action( 'ministries_before_archive_content','custom_ministries_head', 10 );
function custom_ministries_head () {
?>
<div class="ministries-head">
<h5><?php echo _e( 'Ministries', 'bethlehem-extension' ); ?></h5>
<?php ministries_tab_pane(); ?>
</div>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment