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 ); ?>>