中村 body_class

//特定の条件でボディにクラスをつける
add_filter('body_class','my_class_names');
function my_class_names($classes) {
if(is_page( '62' )){
// add 'class-name' to the $classes array
$classes[] = 'list-view';
// return the $classes array
}
return $classes;
}
 

http://memocarilog.info/wordpress/theme-custom/3001 参考

これで固定ページのクエリポストにも
list-viewをつけて

アーカイブぺーじのtw14のcssを