我正在使用分类图像插件。要列出类别及其缩略图和说明。下面的代码给出了类别列表(标题链接到类别存档)和缩略图。我不知道如何添加类别描述。
$terms = apply_filters( \'taxonomy-images-get-terms\', \'\', array(\'taxonomy\' => \'category\') );
if ( ! empty( $terms ) ) {
echo \'<div class="issue">\';
foreach( (array) $terms as $term ) {
echo \'<h3><a href="\' . esc_url( get_term_link( $term, $term->taxonomy ) ) . \'">\' . $term->name . \'</a></h3>\';
echo \'<div class="grid col-60"><a href="\' . esc_url( get_term_link( $term, $term->taxonomy ) ) . \'">\' . wp_get_attachment_image( $term->image_id, \'thumbnail-small\' ) . \'</a></div>\';
echo \'<div class="grid col-780"><h4>In this issue</h4><p>[CATEGORY DESCRIPTION SHOULD GO HERE]</p></div>\';
}
echo \'</div>\';
}
最合适的回答,由SO网友:birgire 整理而成
如果我理解正确,您可以尝试替换
echo \'<div class="grid col-780"><h4>In this issue</h4><p>[CATEGORY DESCRIPTION SHOULD GO HERE]</p></div>\';
使用:
echo \'<div class="grid col-780"><h4>In this issue</h4><p>\'. $term->description. \'</p></div>\';
即。
$term->description
获取描述部分。