Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将图像分配给一些分类术语。我创建了一个自定义分类“付款”。好吧,我使用 $wpz_pay_icon = wp_get_post_terms($post->ID, 'payment', array('fields' => 'names' ));
$wpz_pay_icon = wp_get_post_terms($post->ID, 'payment', array('fields' => 'names' ));
我可以显示每个帖子的每个术语
foreach ( $wpz_pay_icon as $icon ) { echo $icon; }
我想要相同的输出,而不是文本名称,只需将图像分配给该值。任何帮助将不胜感激。