フォーラムへの返信
2件の投稿を表示中 - 1 - 2件目 (全2件中)
-
投稿者投稿
-
GONSYさん
ヒントを頂いた通りに実装したら、簡単に解決することができました
ありがとうございました!
念のためにコードを記載します
add_action( 'snow_monkey_before_contents_inner', function() { if(is_page('数字')){←こちらを追加しただけです $new_query = new \WP_Query( [ 'pagename' => 'front-page-slider', 'post_type' => 'page', 'post_status' => [ 'publish', 'draft' ], 'posts_per_page' => 1, ] ); if ( ! $new_query->have_posts() ) { return; } $new_query->the_post(); ?> <div class="p-entry-content" id="front-page-top-content"> <?php the_content(); ?> </div> <?php wp_reset_postdata(); } } );
解決しましたので、トピックを閉じます
ご返事ありがとうございます。
教えて頂いた内容をもとにチャレンジしてみます!
もし可能なら、
my-snow-monkey.php
に記述したコードをご提示ください。下記の通りとなります。
add_action( 'snow_monkey_before_contents_inner', function() { $new_query = new \WP_Query( [ 'pagename' => 'front-page-slider', 'post_type' => 'page', 'post_status' => [ 'publish', 'draft' ], 'posts_per_page' => 1, ] ); if ( ! $new_query->have_posts() ) { return; } $new_query->the_post(); ?> <div class="p-entry-content" id="front-page-top-content"> <?php the_content(); ?> </div> <?php wp_reset_postdata(); } );
確かに、いずれ最新版ではなくなりますね。次回から詳細は記述します
♥ 0いいねをした人: 居ません -
投稿者投稿
2件の投稿を表示中 - 1 - 2件目 (全2件中)