Skip to content

Instantly share code, notes, and snippets.

@pdewouters
Last active December 25, 2015 06:59
Show Gist options
  • Select an option

  • Save pdewouters/6935859 to your computer and use it in GitHub Desktop.

Select an option

Save pdewouters/6935859 to your computer and use it in GitHub Desktop.
$my_front_page = function() {
if ( 'page' !== get_option( 'show_on_front' ) )
return;
$homepage = get_page_by_path( 'home' );
// check that $homepage returned something
return $homepage->ID;
}
add_filter( 'pre_option_page_on_front', $my_front_page );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment