WordPressのカテゴリーの出力で背景色を出力していますが、複数カテゴリーの場合、「/」で区切る設定を入れたいです。
背景色は「Advanced Custom Fields」というプラグインを使用して実装しています。
色を設定する前は、
PHP
1<?php the_category( ' / ' ); ?>
上記で、複数のカテゴリーを区切って表示されていました。
PHP
1<?php 2 $this_categories = get_the_category(); 3 if ( $this_categories ) { 4 $this_category_color = get_field( 'color', 'category_' . $this_categories[0]->term_id ); 5 $this_category_name = $this_categories[0]->name; 6 echo '<span class="text-white mein-a" style="' . esc_attr( 'background:' . $this_category_color ) . ';">' . esc_html( $this_category_name ) . '</span>'; 7 } 8 9 ?>
上記のコードの中でどこに何を追加すれば良いでしょうか?
よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。