1

Google Analytics で分割テストを実行できるように、ホームページの複製を作成したいと考えています。front-page.php を新しい php ファイルにコピー アンド ペーストして、カスタム ページ テンプレートを作成しました。新しいテンプレートが表示されますが、新しいテンプレートを使用してページを作成すると、ページのブログ部分が表示されません。

ここに私のホームページがあります: http://teamrcia.com

ここに複製があります:http://www.teamrcia.com/homepage2/

複製の php コードは以下のとおりです。私が欠けているものを見るのを手伝ってくれる人はいますか?どうもありがとう。

ニック・ワグナー

<?php

/*
 * Template Name: Home Page 2
 */
/**
 * This file adds the Home Page to the Streamline Pro Theme.
 *
 * @author StudioPress
 * @package Streamline Pro
 * @subpackage Customizations
 */

add_action( 'genesis_meta', 'streamline_home_genesis_meta' );
/**
 * Add widget support for homepage. If no widgets active, display the default loop.
 *
 */
function streamline_home_genesis_meta() {

    if ( is_active_sidebar( 'home-featured-1' ) || is_active_sidebar( 'home-featured-2' ) || is_active_sidebar( 'home-featured-3' ) ) {

    //* Force content-sidebar layout setting
    add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_content_sidebar' );

    // Add streamline-pro-home body class
    add_filter( 'body_class', 'streamline_body_class' );

    // Add homepage widgets
    add_action( 'genesis_before_content_sidebar_wrap', 'streamline_homepage_widgets' );

    }
}

function streamline_body_class( $classes ) {

    $classes[] = 'streamline-pro-home';
    return $classes;

}

function streamline_homepage_widgets() {

    if ( is_active_sidebar( 'home-featured-1' ) || is_active_sidebar( 'home-featured-2' ) || is_active_sidebar( 'home-featured-3' ) ) {

    echo '<div class="home-featured">';

    genesis_widget_area( 'home-featured-1', array(
        'before' => '<div class="home-featured-1 widget-area">',
        'after'  => '</div>',
    ) );

    genesis_widget_area( 'home-featured-2', array(
        'before' => '<div class="home-featured-2 widget-area">',
        'after'  => '</div>',
    ) );

    genesis_widget_area( 'home-featured-3', array(
        'before' => '<div class="home-featured-3 widget-area">',
        'after'  => '</div>',
    ) );

    echo '</div><!-- end #home-featured -->';   

    }

}

genesis();  
4

1 に答える 1

2
  1. WordPress ダッシュボード内で、[外観] > [エディター] に移動し、ホームページが使用しているテンプレート (ほとんどの場合、home.php) を選択します。
  2. 内容をテキスト ファイルにコピーし、好きな名前を付けて (new_template.php など)、コードの上にテンプレート名を追加します。
  3. FTP を使用して、この PHP ファイルを wp-content/themes/your-chosen-theme/ フォルダーにアップロードします。
  4. ダッシュボードに戻り、[ページ] > [新規追加] に移動します。右側のパネルで、追加した新しいテンプレートを選択します。
  5. ページを公開して表示します。ホームページに似ているはずです。
于 2015-02-10T06:56:11.380 に答える