如何在这样的PHP代码中显示样式

时间:2017-05-30 14:28:52

标签: javascript php jquery css

我有一个完美的代码:

<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 即可。 但结果并不令人满意。

希望有一个解决方案。

1 个答案:

答案 0 :(得分:2)

正如评论中所指出的,只需在ulli元素中添加所需的类:

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
}