Skip to content

Instantly share code, notes, and snippets.

@rianrietveld
Created April 24, 2014 07:52
Show Gist options
  • Save rianrietveld/11245571 to your computer and use it in GitHub Desktop.
Save rianrietveld/11245571 to your computer and use it in GitHub Desktop.
Remove page templates from dropdown page attributes in WordPress ( >= 3.9 )
<?php
add_filter( 'theme_page_templates', 'rrwd_remove_page_template' );
function rrwd_remove_page_template( $pages_templates ) {
unset( $pages_templates['page_blog.php'] );
unset( $pages_templates['page_archive.php'] );
return $pages_templates;
}
?>
@jamieedwards
Copy link

Thank you! :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment