web-dev-qa-db-fra.com

Bulk Image Uploader pour créer une nouvelle publication à partir de chaque image

Existe-t-il un plugin qui crée une nouvelle publication à partir de chaque image que je télécharge/sélectionne avec elle?

Je souhaite créer plusieurs messages avec une image par message. Actuellement, je sélectionne, télécharge toutes les images. Créez ensuite un nouveau message, nommez-le comme nom de fichier image, insérez une image à partir de la bibliothèque multimédia, puis enregistrez-le pour le brouillon/publiez-le.

1
LifeH2O
add_action('add_attachment', 'create_post');
function create_post( $attach_ID ) {

    $attachment = get_post( $attach_ID );

    $my_post_data = array(
                'post_title' => $attachment->post_title,
                'post_type' => 'post',
                'post_category' => array('0'),
                'post_status' => 'publish'
    );
    $post_id = wp_insert_post( $my_post_data );

    // attach media to post
    wp_update_post( array(
        'ID' => $attach_ID,
        'post_parent' => $post_id,
    ) );

    set_post_thumbnail( $post_id, $attach_ID );

    return $attach_ID;
}
6
Michael

J'ai trouvé un plugin nommé YAPB (Yet Another Photoblog) qui fait exactement ce dont vous avez besoin, en combinaison avec YAPB Bulk Uploader. Vous pouvez trouver le plugin et les informations ici: http://wordpress.org/extend/plugins/yet-another-photoblog/

1
nico