我有一个完美的代码:
<h2 class="index-single">Tech Categories</h2><?php
$args2 = array( 'cat' => 11 , 'posts_per_page' => 9 , 'paged' => $paged );
$the_query2 = new WP_Query( $args2 );
// The Loop
if ( $the_query2->have_posts() ) {
echo '<ul>';
while ( $the_query2->have_posts() ) {
$the_query2->the_post();
echo '<li>' . get_template_part( 'thumb' ) . '</li>';
}
echo '</ul>';
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
} ?>
但我不想使用类( ul 和 li ),但 我想使用代码调用(行和 boxer2
我想稍后将它显示为并行。
我试图替换代码 ul &gt; 行, li &gt;的 boxer2 即可。 但结果并不令人满意。
希望有一个解决方案。
答案 0 :(得分:2)
正如评论中所指出的,只需在ul
和li
元素中添加所需的类:
if ( $the_query2->have_posts() ) {
echo '<ul class="row">';
while ( $the_query2->have_posts() ) {
$the_query2->the_post();
echo '<li class="boxer2">' . get_template_part( 'thumb' ) . '</li>';
}
echo '</ul>';
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
}