0

我需要显示一个与自定义 Wordpress 分类相关的图标。分类的代码是:

$labels = array(
    'name' =>  'Country/State/City' ,
    'singular_name' =>  'Genre' ,
    'search_items' =>  __( 'Search Country/State/City' ),
    'all_items' => __( 'All Country/State/City' ),
    'parent_item' => __( 'Parent Country/State/City' ),
    'parent_item_colon' => __( 'Parent Genre:' ),
    'edit_item' => __( 'Edit Country/State/City' ), 
    'update_item' => __( 'Update Country/State/City' ),
    'add_new_item' => __( 'Add New Country/State/City' ),
    'new_item_name' => __( 'New Country/State/City' ),
    'menu_name' => __( 'Country/State/City' ),    ); 
    register_taxonomy( 'location', 'post', array( 'hierarchical' => true, 'labels' => $labels, 'query_var' => true, 'rewrite' => true ) );
    }   

我在主题文件夹中创建了一个文件夹,其中包含国旗(Spain.png、France.png 等)

我需要显示一个带有最新帖子标题的列表,旁边有标志。

所以我想我可以做这个循环,比如说,从一个帖子类别中获取最新的 10 个帖子,显示它的标题,它旁边的图标将是“path-to-image-folder/taxonomy-country.png”

我不知道该怎么做...有人可以帮我启动我吗?

编辑

所以我得到了这个:

<h2>Recent Posts</h2>
<ul>
<?php
$args = array( 'numberposts' => '15' );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
        $terms = get_the_terms( $recent->ID, 'location' );
        $flagimg='<img src="'.get_bloginfo('template_directory').'/images/flags/'.$terms[0]->slug.'.png" alt="'.$terms[0]->name.'" border="0" />';
        echo '<li class="country-'.$terms[0]->slug.'"><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >'.$flagimg.' '.$recent["post_title"].'</a> </li> ';
}
?>
</ul>

但我得到的 img src 链接是:http: //inovve.net/expoff/wp-content/themes/inovve/images/flags/.png

即缺少分类名称....:/

4

0 回答 0