将类别描述添加到具有分类图像的类别列表

时间:2013-05-14 作者:Phantasmix

我正在使用分类图像插件。要列出类别及其缩略图和说明。下面的代码给出了类别列表(标题链接到类别存档)和缩略图。我不知道如何添加类别描述。

    $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>\';

}

1 个回复
最合适的回答,由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 获取描述部分。

结束

相关推荐

Link post images to post

出于某种原因,我找不到任何好的方法来将帖子图像链接到帖子。我在上找到一个脚本http://wpguy.com/plugins/linked-image/ 它可以工作,但不会删除旧链接,而是将旧链接和图像包装在新的a标记中。我想要的是删除旧链接,这样图像只包装在一个a标记中。这是我目前拥有的脚本:function wpguy_linked_image($content){ $searchfor = \'/(<img[^>]*\\/>)/\'; $r