web-dev-qa-db-ja.com

ショートコードが静的フロントページで機能しない

私が使用しようとしているプラ​​グインからのショートコードは、私の静的なフロントページでは動作していません。プレーンテキストのショートコードテキストとしてのみ表示されますが、他のすべてのページでうまく機能します。

私はIlldyテーマを使用しています、私はすでに彼らのフォーラムでこの問題について質問しましたが、問題は私のfront-page.phpファイルにあると感じます。 front-page.phpファイルに不足しているものや余分なものがあり、ショートコードが機能しなくなっていませんか。

_ update _ :front-page.phpで、get_the_content()をthe_content()に変更し、問題を修正しました。これは良い修正ですか?私はこの変更を加えることで快適に感じることができますか?

これが私のfront-page.phpです。

<?php
/**
 *  The template for displaying the front page.
 *
 *  @package WordPress
 *  @subpackage illdy
 */



get_header();


if( get_option( 'show_on_front' ) == 'posts' ): ?>

    <div class="container">
        <div class="row">
            <div class="col-sm-7">
                <section id="blog">
                    <?php do_action( 'illdy_above_content_after_header' ); ?>
                    <?php
                    if( have_posts() ):
                        while( have_posts() ):
                            the_post();
                            get_template_part( 'template-parts/content', get_post_format() );
                        endwhile;
                    else:
                        get_template_part( 'template-parts/content', 'none' );
                    endif;
                    ?>
                    <?php do_action( 'illdy_after_content_above_footer' ); ?>
                </section><!--/#blog-->
            </div><!--/.col-sm-7-->
            <?php get_sidebar(); ?>
        </div><!--/.row-->
    </div><!--/.container-->

<?php
else:

    $sections_order_first_section = get_theme_mod( 'illdy_general_sections_order_first_section', 1 );
    $sections_order_second_section = get_theme_mod( 'illdy_general_sections_order_second_section', 2 );
    $sections_order_third_section = get_theme_mod( 'illdy_general_sections_order_third_section', 3 );
    $sections_order_fourth_section = get_theme_mod( 'illdy_general_sections_order_fourth_section', 4 );
    $sections_order_fifth_section = get_theme_mod( 'illdy_general_sections_order_fifth_section', 5 );
    $sections_order_sixth_section = get_theme_mod( 'illdy_general_sections_order_sixth_section', 6 );
    $sections_order_seventh_section = get_theme_mod( 'illdy_general_sections_order_seventh_section', 7 );
    $sections_order_eighth_section = get_theme_mod( 'illdy_general_sections_order_eighth_section', 8 );

    if( have_posts() ):
        while( have_posts() ): the_post();
            $static_page_content = get_the_content();
            if ( $static_page_content != '' ) : ?>
                <section class="front-page-section" id="static-page-content">
                    <div class="section-header">
                        <div class="container">
                            <div class="row">
                                <div class="col-sm-12">
                                    <h3><?php the_title(); ?></h3>
                                </div><!--/.col-sm-12-->
                            </div><!--/.row-->
                        </div><!--/.container-->
                    </div><!--/.section-header-->
                    <div class="section-content">
                        <div class="container-fluid">
                            <div class="row">
                                <div class="col-sm-10 col-sm-offset-1">
                                    <?php echo $static_page_content; ?>
                                </div>
                            </div>
                        </div>
                    </div>
                </section>
            <?php endif;
        endwhile;
    endif;

    if( $sections_order_first_section ):
        illdy_sections_order( $sections_order_first_section );
    endif;

    if( $sections_order_second_section ):
        illdy_sections_order( $sections_order_second_section );
    endif;

    if( $sections_order_third_section ):
        illdy_sections_order( $sections_order_third_section );
    endif;

    if( $sections_order_fourth_section ):
        illdy_sections_order( $sections_order_fourth_section );
    endif;

    if( $sections_order_fifth_section ):
        illdy_sections_order( $sections_order_fifth_section );
    endif;

    if( $sections_order_sixth_section ):
        illdy_sections_order( $sections_order_sixth_section );
    endif;

    if( $sections_order_seventh_section ):
        illdy_sections_order( $sections_order_seventh_section );
    endif;

    if( $sections_order_eighth_section ):
        illdy_sections_order( $sections_order_eighth_section );
    endif;
endif;

get_footer(); ?>
1
OMGitzMidgar

Front-page.phpページを変更する必要があるようですが、間違った変数を使用しています。

$static_page_content = get_the_content();

$static_page_content = the_content();

編集:私はあなたがこれにあなたの質問を更新したのを見ます、はい、これはうまくいきます。これによる悪影響はないはずです。

2
Dustin Snider