前提・実現したいこと
wordpress初心者です。
カスタム投稿タイプで表示したmenu一覧ページを作りmenu詳細ページを6ページ作りました。
詳細ページ6ページ作った表示を並び替えを行いたいのですがどのように行えばいいでしょうか?
その他にも
並び変えたい画像のようにタイトル名は切り替えたのですが
値段と文章を各ページごとに切り替えたいのですがどのように設定すればいいのでしょうか?
php
1<?php get_header(); ?> 2 <main class="menu-page-container"> 3 <div class="menu-visual"> 4 <div class="menu-bg"> 5 <h2 class="title">メニュー</h2> 6 </div> 7 </div> 8 <section id="menu-page" class="bg01"> 9 <div class="inner"> 10 11 <ul class="menu-box"> 12 13 <?php $args = array( 14 'numberposts' => -1, 15 'post_type' => 'menu' 16 ); 17 $posts = get_posts( $args ); 18 if( $posts ) : foreach( $posts as $post ) : setup_postdata( $post ); ?> 19 20 <li> 21 <a href="<?php the_permalink(); ?>"> 22 <figure class="img"> 23 <?php the_post_thumbnail('full'); ?> 24 </figure> 25 <div class="text-area"> 26 <h3 class="title"> 27 <?php the_title(); ?> 28 <span>¥220円</span> 29 </h3> 30 <p class="txt"> 31 画像・商品名・金額・商品説明をCMSから簡単に入力できるようにします。<br> 32 テキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキストテキスト。 33 </p> 34 </div> 35 </a> 36 </li> 37 38 39 <?php endforeach; ?> 40 41 <?php else: ?> 42 43 <p>記事がまだありません。</p> 44 45 <?php endif; wp_reset_postdata(); ?> 46 47 </ul> 48 49 <div class="menu_btn"> 50 <a href="">さらに読み込む</a> 51 </div> 52 </div><!--/inner--> 53 </section> 54 </main> 55<?php get_footer(); ?>
php
1add_action( 'init', 'add_post_type' ); 2function add_post_type() { 3 4 //カスタム投稿タイプ「制作実績」 5 register_post_type( 'menu',//「works」はお好みで変えてください(カスタムタクソノミーを設定する時にも使います) 6 array( 7 'labels' => array( 8 'name' => __('人気メニュー'),//「制作実績」「制作一覧」はお好みで変えてください 9 'singular_name' => __('人気メニュー'), 10 'all_items' => __('人気メニュー'), 11 ), 12 'public' => true, 13 'menu_position' =>5, 14 'menu_icon' => 'dashicons-admin-customizer',//アイコン画像 15 'supports' => array('title','editor','thumbnail','custom-fields','excerpt','trackbacks','comments','revisions','page-attributes'), 16 'has_archive' => true, 17 'show_in_rest' => true, 18 ) 19 );
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/11 00:01
2020/03/11 00:22 編集
2020/03/11 00:31
2020/03/11 00:57
2020/03/11 04:58
2020/03/11 06:42 編集