回答:
そのテンプレートをオーバーライドすることは、それを取り除くよりもはるかに簡単です。まさに論理的です。
私はそれが効率的なアイデアであると主張していません(ここで後半)が、これは編集画面からそれを隠します:
add_action('admin_head-post.php','remove_template');
function remove_template() {
global $wp_themes;
get_themes();
$templates = &$wp_themes['Twenty Ten']['Template Files'];
$template = trailingslashit( TEMPLATEPATH ).'onecolumn-page.php';
$key = array_search($template, $templates);
unset( $templates[$key] );
}
WordPress 3.9にはtheme_page_templates
フィルターが導入されています。
以下のTwenty Fourteen子テーマの例functions.php
は、「Contributor Page」テンプレートを削除する方法を示しています。
function tfc_remove_page_templates( $templates ) {
unset( $templates['page-templates/contributors.php'] );
return $templates;
}
add_filter( 'theme_page_templates', 'tfc_remove_page_templates' );
@Rarstの答えを拡張して、特定のテーマに結び付けられていないが、独自の子テーマのfunctions.php内で使用して、削除する親テーマページテンプレートを無効にすることができるより一般的なアプローチを示します。
function remove_template( $files_to_delete = array() ){
global $wp_themes;
// As convenience, allow a single value to be used as a scalar without wrapping it in a useless array()
if ( is_scalar( $files_to_delete ) ) $files_to_delete = array( $files_to_delete );
// remove TLA if it was provided
$files_to_delete = preg_replace( "/\.[^.]+$/", '', $files_to_delete );
// Populate the global $wp_themes array
get_themes();
$current_theme_name = get_current_theme();
// Note that we're taking a reference to $wp_themes so we can modify it in-place
$template_files = &$wp_themes[$current_theme_name]['Template Files'];
foreach ( $template_files as $file_path ){
foreach( $files_to_delete as $file_name ){
if ( preg_match( '/\/'.$file_name.'\.[^.]+$/', $file_path ) ){
$key = array_search( $file_path, $template_files );
if ( $key ) unset ( $template_files[$key] );
}
}
}
}
そのため、子テーマのfunctions.phpファイルで次のように使用できます。
add_action( 'admin_head-post.php', 'remove_parent_templates' );
function remove_parent_templates() {
remove_template( array( "showcase.php", "sidebar-page" ) );
}
ここでは、「。php」の部分を渡す必要がないことを示しています。
または:remove_template( "sidebar-page" );
-単一のファイルのみを変更する場合、配列を渡す必要はありません。
WPコア(3.9)には、ページテンプレートを削除するための新しいフィルターがあります。子テーマから使用できます。
TwentyTenでこれを実現する方法は次のとおりです(WP 3.9でテスト済み)。
add_filter( 'theme_page_templates', 'my_remove_page_template' );
function my_remove_page_template( $pages_templates ) {
unset( $pages_templates['onecolumn-page.php'] );
return $pages_templates;
}
https://core.trac.wordpress.org/changeset/27297
http://boiteaweb.fr/theme_page_templates-hook-semaine-16-8033.html
WordPressの現在のバージョンでは以前の回答がここで機能しなくなったため、PHP出力バッファーを使用して回答した関連質問(2013年4月)があったため、その回答へのリンクを投稿すると思いました。
また、ちょうど公表省略親テーマページテンプレート WordPressの追加または編集するときにページのテンプレートのドロップダウンリストから、すべての親のテーマページテンプレートアウトフィルタはmetabox属性というプラグイン「ページを。」
2012年7月10日-WordPress 3.4.1
以前の回答は機能せず、Rarstがコメントで述べたように:
テーマ関連の内部は、3.4での主要なリファクタリングとAPIの変更を経たため、多くの古いものは機能しません
add_action('admin_head', 'wpse_13671_script_enqueuer');
function wpse_13671_script_enqueuer() {
global $current_screen;
/**
* /wp-admin/edit.php?post_type=page
*/
if('edit-page' == $current_screen->id)
{
?>
<script type="text/javascript">
jQuery(document).ready( function($) {
$("a.editinline").live("click", function () {
var ilc_qe_id = inlineEditPost.getId(this);
setTimeout(function() {
$('#edit-'+ilc_qe_id+' select[name="page_template"] option[value="showcase.php"]').remove();
}, 100);
});
$('#doaction, #doaction2').live("click", function () {
setTimeout(function() {
$('#bulk-edit select[name="page_template"] option[value="showcase.php"]').remove();
}, 100);
});
});
</script>
<?php
}
/**
* /wp-admin/post.php?post=21&action=edit
*/
if( 'page' == $current_screen->id )
{
?>
<script type="text/javascript">
jQuery(document).ready( function($) {
$('#page_template option[value="showcase.php"]').remove();
});
</script>
<?php
}
}
正しいパスをたどった場合、これが「アクション」が発生する場所です(/wp-includes/class-wp-theme.php
)、ここにはフックするものが何もないように見えます...
/**
* Returns the theme's page templates.
*
* @since 3.4.0
* @access public
*
* @return array Array of page templates, keyed by filename, with the value of the translated header name.
*/
public function get_page_templates() {
// If you screw up your current theme and we invalidate your parent, most things still work. Let it slide.
if ( $this->errors() && $this->errors()->get_error_codes() !== array( 'theme_parent_invalid' ) )
return array();
$page_templates = $this->cache_get( 'page_templates' );
if ( ! is_array( $page_templates ) ) {
$page_templates = array();
$files = (array) $this->get_files( 'php', 1 );
foreach ( $files as $file => $full_path ) {
$headers = get_file_data( $full_path, array( 'Template Name' => 'Template Name' ) );
if ( empty( $headers['Template Name'] ) )
continue;
$page_templates[ $file ] = $headers['Template Name'];
}
$this->cache_add( 'page_templates', $page_templates );
}
if ( $this->load_textdomain() ) {
foreach ( $page_templates as &$page_template ) {
$page_template = $this->translate_header( 'Template Name', $page_template );
}
}
if ( $this->parent() )
$page_templates += $this->parent()->get_page_templates();
return $page_templates;
}