Skip to content

Instantly share code, notes, and snippets.

@cliffordp
Created October 4, 2013 17:27
Show Gist options
  • Save cliffordp/6829567 to your computer and use it in GitHub Desktop.
Save cliffordp/6829567 to your computer and use it in GitHub Desktop.
<?php
// globally displays page titles in PageLines DMS
add_action( 'loop_start', 'pldmspagetitles');
function pldmspagetitles() {
if( is_page() /* && !is_front_page() && !is_page(54) */ ) {
printf( '<h1>%s</h1>', get_the_title() );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment