Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、次のコード行を使用しています。
<li <?php post_class( $classes); ?>>
私は基本的に、クラス「サムネイル」をこのリスト項目に手動で追加したいと考えています。次のことを試しましたが、クラスを取得できなくなりました。
<li <?php post_class( $classes, 'thumbnail' ); ?>>
これを正しくフォーマットする方法について誰か助けてもらえますか? 私はphpとwordpressが初めてです。
$classes次のように新しいメンバーを追加するだけです。
$classes
<li <?php $classes[] = 'thumbnail'; post_class( $classes ); ?>>