Created
April 24, 2014 07:52
-
-
Save rianrietveld/11245571 to your computer and use it in GitHub Desktop.
Remove page templates from dropdown page attributes in WordPress ( >= 3.9 )
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you! :)