Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nucab/876d730bf34d2ffbd6e9dc0e028c2995 to your computer and use it in GitHub Desktop.
Save nucab/876d730bf34d2ffbd6e9dc0e028c2995 to your computer and use it in GitHub Desktop.
<?php
add_filter( 'theme_page_templates', 'child_theme_remove_page_template' );
/**
* Remove page templates inherited from the parent theme.
*
* @param array $page_templates List of currently active page templates.
*
* @return array Modified list of page templates.
*/
function child_theme_remove_page_template( $page_templates ) {
// Remove the template we don’t need.
unset( $page_templates['template-full-width.php'] );
return $page_templates;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment