我需要为自定义帖子类型的最后一篇帖子添加不同的类。有可能吗?
我找到了这个代码,但它只在帖子中起作用
function wpc_last_post_class( $classes ) {
global $wp_query;
if(($wp_query->current_post+1) == $wp_query->post_count) $classes[] = \'last\'; // change the class name you would like to add here
return $classes;
}
add_filter(\'post_class\', \'wpc_last_post_class\');