日期:2014-03-04 阅读:2018
dmandwp系统 - wordpress系统和DM系统区块建站>>
comment_num_all($nid):调用评论数,$nid为node的ID,当前node可用$node->nid。
taxonomy_get_tree($vid):显示分类(item),vid为category的ID,必须是category,不能是item,也就是说只能显示父层下面的item。
taxonomy_get_children($tid):显示Item下面的item,$tid为父item的id。
更多在: http://blog.sina.com.cn/s/blog_635a5beb01016nay.html
-------------
print file_create_url($node->field_image['und']['0']['uri']); --图片
$taxoid = $node->field_cate_products['und']['0']['tid']; ---分类
$term = taxonomy_term_load($taxoid);
print $term->name;
分类的alias?