我在Wordpress媒体库中添加了自定义分类法“元素”,因此我可以标记图像并按标记对其进行排序。
我现在想将所有图像自动输出到一个taxonomy-elements.php存档模板(或archive-elements.php?)中。
例如,所有带有Elements标签“ light”的图像都将出现在/ elements / light。
我还想查询所有Elements标记,以显示网站上任何链接到这些存档页面的链接列表。此列表还将显示每个标签的图像数量。
例如:
元素: 轻(5) 空间(2) 红色(4) 蓝色(8)
我注册的自定义分类法:
// register new taxonomy which applies to attachments
function wptp_add_elements_taxonomy() {
$labels = array(
'name' => 'Elements',
'singular_name' => 'Element',
'search_items' => 'Search Elements',
'all_items' => 'All Elements',
'parent_item' => 'Parent Element',
'parent_item_colon' => 'Parent Element:',
'edit_item' => 'Edit Element',
'update_item' => 'Update Element',
'add_new_item' => 'Add New Element',
'new_item_name' => 'New Element Name',
'menu_name' => 'Elements',
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'query_var' => 'true',
'rewrite' => 'true',
'show_admin_column' => 'true',
);
register_taxonomy( 'elements', 'attachment', $args );
}
add_action( 'init', 'wptp_add_elements_taxonomy' );
尝试从Elements自定义分类中输出图像:
function get_images_from_media_library($elements) {
$args = array(
'post_type' => 'attachment',
'post_mime_type' =>'image',
'post_status' => 'inherit',
'posts_per_page' => -1,
'orderby' => 'rand',
'tax_query' => array(
array(
'taxonomy' => 'elements',
'field' => 'slug',
'terms' => $elements
)
)
);
$query_images = new WP_Query( $args );
$images = array();
foreach ( $query_images->posts as $image) {
$images[]= $image->guid;
echo $image->ID; // Returns image ID, but I need it in display_images_from_media_library function
}
return $images;
}
function display_images_from_media_library($elements) {
$imgs = get_images_from_media_library($elements);
foreach($imgs as $img) {
$html .= '<img src="' . $img . '" alt="">';
}
return $html;
}