現在この関数を使ってカテゴリーを取得しているのですが
php
1 <?php 2 $paged = (get_query_var('page')) ? get_query_var('page') : 1; 3 4 $the_query = new WP_Query( array( 5 'post_status' => 'publish', 6 'category_name' => 'category1' , 7 'paged' => $paged, 8 'posts_per_page' => 10, // 表示件数 9 'orderby' => 'date', 10 'order' => 'DESC', 11 ) ); 12 if ($the_query->have_posts()) : 13 while ($the_query->have_posts()) : $the_query->the_post(); 14 ?>
php
1'category_name' => '#####' ,
####
↑に現在表示しているページのカテゴリーのslugを取得したいと考えていますがどのように追加で記述すれば良いでしょうか?
よろしくおねがいします。
ちなみに現在のcategori.phpは以下のようになっています。
php
1<?php 2/** 3* Template archive pages 4* @package WordPress 5* @subpackage I'LL 6* @since I'LL 1.0 7*/ 8 9get_header(); ?> 10 11 12<section class="main_content"> 13 <div class="category__mv"> 14 <figure class="category__mv__img" 15 style="background-image: url(<?php echo get_template_directory_uri() ?>/lib/img/mv2.png)"> 16 <h1><span>Category.</span><?php the_archive_title(); ?></h1> 17 </figure> 18 </div> 19 <div class="breadcrumb-area"> 20 <div class="breadcrumb-area_inner"> 21 <?php if ( function_exists( 'bcn_display' ) ) { 22 bcn_display(); 23 } 24 ?> 25 </div> 26 </div> 27 <div class="category"> 28 <div class="category__flex"> 29 <div class="category__flex__box"> 30 <!--<h3 class="category-title">を出力する--> 31 <?php if ( is_404() ) : ?> 32 <h3 class="category-title"><?php _e( '404 File not found.', 'ill' ); ?></h3> 33 <?php elseif ( is_search() ) : ?> 34 <h3 class="category-title"><?php _e( 'Search Word', 'ill' ); ?><?php the_search_query(); ?><i 35 class="fa fa-angle-right"></i><?php echo $wp_query->found_posts; ?><?php _e( 'Number', 'ill' ); ?> 36 </h3> 37 <?php else: ?> 38 <?php the_archive_title( '<h3 class="category-title">','</h3>' ); ?> 39 <?php if ( !is_paged() ) : ?> 40 <?php endif; ?> 41 <?php endif; ?> 42 <?php 43 if ( is_404() ) { 44 $name = 'none'; 45 } elseif ( is_search() ){ 46 $name = 'search'; 47 } else { 48 $name = 'archive'; 49 } 50 get_template_part( 'content', $name ); 51 ?> 52 <!--<h3 class="archive-title">を出力する end--> 53 <div class="category__flex__box__content"> 54 <?php 55 $paged = (get_query_var('page')) ? get_query_var('page') : 1; 56 57 $the_query = new WP_Query( array( 58 'post_status' => 'publish', 59 'category_name' => 'category1' , 60 'paged' => $paged, 61 'posts_per_page' => 10, // 表示件数 62 'orderby' => 'date', 63 'order' => 'DESC', 64 ) ); 65 if ($the_query->have_posts()) : 66 while ($the_query->have_posts()) : $the_query->the_post(); 67 ?> 68 <article class="article"> 69 <figure class="article__img" 70 style="background-image: url(<?php the_post_thumbnail_url(350.223); ?>);"> 71 </figure> 72 <div class="article__box"> 73 <div class="article__box__flex"> 74 <?php the_tags( '<ul><li>', '</li><li>', '</li></ul>' ); ?> 75 <time><?php the_time('Y.n.j'); ?></time> 76 </div> 77 <h3 class="article__box__title"><a href="<?php the_permalink(); ?>"> 78 <?php 79 if(mb_strlen($post->post_title, 'UTF-8')>49){ 80 $title= mb_substr($post->post_title, 0, 49, 'UTF-8'); 81 echo $title.'……'; 82 }else{ 83 echo $post->post_title; 84 } 85 ?> 86 </a> 87 </h3> 88 </div> 89 90 </article> 91 <?php 92 endwhile; 93 else: 94 echo '<div><p>ありません。</p></div>'; 95 endif; 96 ?> 97 98 99 </div> 100 <?php wp_pagenavi(array('query' => $the_query)); ?> 101 </div> 102 <?php get_sidebar(); ?> 103 </div> 104 </div> 105 </div> 106 <a href="#" id="backtotop"><i class="fas fa-chevron-up fa-2x"></i> 107 </a> 108 109</section> 110<?php get_footer(); ?> 111
これによりcatewgori1の記事取得はできている状態です。
よろしくおねがいします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/17 10:44