カスタム投稿 faqのfacirityカテゴリのみ一覧表示で5件ループさせたいのですが
以下の記述ではエラーが出ました、
解決方法がわかる方がいればご教示いただけますと幸いです。
<?php $args = array( 'posts_per_page' => 5, 'orderby' => 'date', 'order' => 'DESC', 'post_type' => 'faq' 'category' => 'facirity' ); $posts_array = get_posts( $args ); ?> <?php foreach ( $posts_array as $post ) : setup_postdata( $post ); ?> <li class="post"> <p class="txt -q faq-title"><?php the_title(); ?></p> <div class="txt -a faq-content"><?php the_content(); ?></div> </li> <?php endforeach; wp_reset_postdata(); ?>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。