我的帖子有这个类:
<?php post_class( \'entry-image\' ); ?>
我想添加
category names 为了做同位素工作,我遵循了这个指南
http://www.acegoulet.com/2012/03/isotope-and-wordpress-how-i-did-it/ 我使用此代码获取类别名称:
$post_cats = get_the_category(); foreach( $post_cats as $category ) { echo $category->slug.\' \';}
但这行不通。我试图在类和类别之间添加逗号:
<?php post_class( \'entry-image\', $post_cats = get_the_category(); foreach( $post_cats as $category ) { echo $category->slug.\' \';} ); ?>
我检查了firebug,但在循环(帖子)中没有看到类别名称
为什么这不起作用?
谢谢你的帮助!