我需要在循环中出现的最后一篇文章中添加一个“last”类。php。
有人能告诉我如何做到这一点吗?
我需要在循环中出现的最后一篇文章中添加一个“last”类。php。
有人能告诉我如何做到这一点吗?
假设您正在使用post_class()
:
add_filter(\'post_class\', function($classes){
global $wp_query;
if(($wp_query->current_post + 1) == $wp_query->post_count)
$classes[] = \'last\';
return $classes;
});
我在设置奇偶列表项或类似项的样式时使用jQuery addClass()。你也可以用它来实现你想要的。
例子:
$("#menu_side > ul > li:last-child").addClass("last");
WP循环被广泛用于打印Wordpress中的帖子列表:<?php $loop = new WP_Query( array( \'post_type\' => \'ff\', \'ff\' => \'show_ff\', \'orderby\' => \'menu_order\', \'order\' => \'ASC\' )); while ( $loop->have_posts() ) : $loop->the_post(); ?> &#