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


17

TwentyTenテーマを使用して子テーマを作成していますが、TwentyTen親テーマにある「1列、サイドバーなし」ページテンプレートを削除することはできません。

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

ありがとう

大須

回答:


11

そのテンプレートをオーバーライドすることは、それを取り除くよりもはるかに簡単です。まさに論理的です。

私はそれが効率的なアイデアであると主張していません(ここで後半)が、これは編集画面からそれを隠します:

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

これをありがとう、それは良い解決策のように見える-あなたがテンプレートをオーバーライドすると言うとき、とにかくそこに1列のテンプレートを含めることを意味するのですか?または、実際に使用したいテンプレートでオーバーライドすることを意味しますか(つまり、1列と呼びますが、実際には2列または3列あります)?
大須

@Osu私はあなた自身の同様のテンプレートでオーバーライドすることを意味しました。ロジックに関する限り、子テーマを変更して親テーマのテンプレートに追加するのは簡単ですが、それらを無効にすることは困難です。基本的に、子テーマは、親テーマよりも多くのことを行うことになっています。また、コードロジックはこの原則に従います。
11

ああ、わかった。それを片付けてくれてありがとう。それから、それらのために1つのcolテンプレートを作成します。乾杯
大須

jQueryのを使用して、ドロップダウンリストからテーマを削除したい人のために、これは別のアプローチがある(ないことを確認、それが最善の方法けれどもの場合):pastie.org/3710683
大須

2
@brasofiloテーマ関連の内部は、3.4での主要なリファクタリングとAPIの変更を経たため、多くの古いものは機能しません
Rarst

29

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' );

3
これは、WP 3.9+の更新された承認済みの回答である必要があります
15

9

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


6

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


リンクが変更または停止されると、オフサイトのリンクは役に立たなくなります。また、これは実際に質問に答える試みます
トム・J Nowell

結構です、例が追加されました。
マルシオドゥアルテ14

1

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

また、ちょうど公表省略親テーマページテンプレート WordPressの追加または編集するときにページのテンプレートのドロップダウンリストから、すべての親のテーマページテンプレートアウトフィルタはmetabox属性というプラグイン「ページを。」


0

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

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.