如何在Wordpress中的特定类别下显示图像(来自媒体库)?

时间:2014-05-04 06:15:49

标签: php wordpress

所以我有这个功能代码添加"类别"到我在Wordpress网站上传的图片。

/** Register taxonomy for images */
function olab_register_taxonomy_for_images() {
    register_taxonomy_for_object_type( 'category', 'attachment' );
}
add_action( 'init', 'olab_register_taxonomy_for_images' );

/** Add a category filter to images */
function olab_add_image_category_filter() {
    $screen = get_current_screen();
    if ( 'upload' == $screen->id ) {
        $dropdown_options = array( 'show_option_all' => __( 'View all categories', 'olab' ), 'hide_empty' => false, 'hierarchical' => true, 'orderby' => 'name', );
        wp_dropdown_categories( $dropdown_options );
    }
}
add_action( 'restrict_manage_posts', 'olab_add_image_category_filter' );

enter image description here

我想知道如何拨打或显示属于特定类别的所有图片(我要拨打的类别编号是#2190类别)?

我在这里尝试做的是拥有一个照片库,展示我已经上传并标记在#2190类别下的所有照片 - "当天的照片"?

1 个答案:

答案 0 :(得分:4)

以下代码应该执行您要实现的目标

<?php
$images = get_posts( array('post_type' => 'attachment', 'category__in' => array(2190))  );
if ( !empty($images) ) {
    foreach ( $images as $image ) {
        echo wp_get_attachment_image($image->ID).'<br />';
        echo $image->post_title .'<br />';
        the_attachment_link( $image->ID, true );
    }
}
?>