web-dev-qa-db-fra.com

Lier l'image d'attachement à la catégorie

Comment lier une image de pièce jointe à sa catégorie?

function wp_attachment_image($size = thumb) {
    if($images = get_children(array(
        'post_parent'    => get_the_ID(),
        'post_type'      => 'attachment',
        'numberposts'    => -1, // show all
        'post_status'    => null,
        'post_mime_type' => 'image',
    ))) {
        foreach($images as $image) {
            $attimg   = wp_get_attachment_image($image->ID,$size);
            $atturl   = wp_get_attachment_url($image->ID);
            $attlink  = get_attachment_link($image->ID);
            $postlink = get_permalink($image->post_parent);
            $atttitle = apply_filters('the_title',$image->post_title);

            echo '<a href="'.$postlink.'">'.$attimg.'</a>';
        }
    }
}
wp_attachment_image('thumb');
1
Mark

J'ai posté un court comment ajouter des champs supplémentaires aux catégories et une fois que vous avez terminé, vous pouvez lier la pièce jointe à l'aide de l'URL ou de l'ID de la pièce jointe. .

1
Bainternet