doudang4857 2019-06-10 12:22
浏览 69
已采纳

提前自定义字段获取字段不起作用

Want to display the category icon in the post list, for that, I'm creating a custom field category_icon field by using ACF. below is my code to get the icon image URL, but not getting anything even no error also.

<span class="blog-info-categories">
<?php
print apply_filters( 'taxonomy-images-queried-term-image', '' );
$terms = get_terms('category');?>
<?php
$taxonomy = 'category';
// Get the term IDs assigned to post.
$post_terms = wp_get_object_terms($post->ID, $taxonomy, array('fields' => 'ids'));

// Separator between links.
$separator = ', ';
if (!empty($post_terms) && !is_wp_error($post_terms)) {
$term_ids = implode(',', $post_terms);
$terms = wp_list_categories(array(
        'title_li' => '',
        'style'    => 'none',
        'echo'     => false,
        'taxonomy' => $taxonomy,
        'include'  => $term_ids));

$terms = rtrim(trim(str_replace('<br />',  $separator, $terms)),   $separator);                                                                 $termss = wp_get_post_terms( $post->ID,array( 'category' ) );
$icon = get_field('category_icon', $taxonomy . '_' . $term_ids);
echo $icon['url'];
echo  $terms;
}
?>
</span>

i

  • 写回答

1条回答 默认 最新

  • douluo7366 2019-06-10 14:02
    关注

    The wp_list_categories() function outputs a html list which is a string I would always use get_terms() so I have something to loop through. Is this a solution to your problem? I think I understand but can revise the solution to suit if I'm wrong.

    $terms = get_terms( $taxonomy, array(
        'hide_empty' => false,
        'include'  => $post_terms
        )
    );
    
    foreach($terms as $term){
        $icon = get_field('category_icon', $term);
        $icon = $icon['url'];
        $name = $term->name;
        $url = get_term_link($term, $taxonomy);
        echo '<img src="' . $icon . '">' . '<a href="' . $url . '">' . $name . '</a>, ';
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 matlab有关常微分方程的问题求解决
  • ¥15 perl MISA分析p3_in脚本出错
  • ¥15 k8s部署jupyterlab,jupyterlab保存不了文件
  • ¥15 ubuntu虚拟机打包apk错误
  • ¥199 rust编程架构设计的方案 有偿
  • ¥15 回答4f系统的像差计算
  • ¥15 java如何提取出pdf里的文字?
  • ¥100 求三轴之间相互配合画圆以及直线的算法
  • ¥100 c语言,请帮蒟蒻写一个题的范例作参考
  • ¥15 名为“Product”的列已属于此 DataTable