web-dev-qa-db-ja.com

子テーマから親テーマページのテンプレートを*削除*する方法?

私はTwentyTenテーマを使用して子テーマを作成していますが、TwentyTen親テーマにある「One column、no sidebar」ページテンプレートを取り除くことはできません。

コピーして内容を削除するだけでうまくいくと思いましたが、そうではありません。誰もがこれを行う方法を知っていますか?私はそれがとても簡単だと確信しています。

ありがとう

おす

16
Osu

そのテンプレートを上書きすることはそれを取り除くことよりもはるかに簡単でしょう。論理はまさにその通りです。

私はそれが効率的なアイディアであると主張していません(ここで遅く)、しかしこれはそれを編集スクリーンからそれを悪用するでしょう:

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] );
}
10
Rarst

WordPress 3.9ではtheme_page_templatesフィルタが導入されました。

24 childテーマ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' );
27
Alex Angas

@ 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" ); - 単一のファイルだけを変更したい場合は、配列を渡す必要はありません。

9
Tom Auger

ページテンプレートを削除するためのWP core(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

6
Marcio Duarte

以前の回答はWordPressの現在のバージョンではここで機能しなくなったため、関連する質問がありました(2013年4月)PHP出力バッファ私は link をその答えに投稿すると思いました。

また、 親テーマページテンプレートを除外 のテンプレートをドロップダウンリストからすべての親テーマページテンプレートを除外するプラグインを公開しました。 WordPress "Page。"を追加または編集するときのページ属性メタボックス

1
MikeSchinkel

2012年7月10日 - WordPress 3.4.1

以前の回答はうまくいかず、Rarstがコメントで述べたように。

テーマ関連の内部は3.4で大幅なリファクタリングとAPIの変更を経ていたので、たくさんの古いものはうまくいきません

早くて汚いjQueryソリューション

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;
}
0
brasofilo