Ottenere percorso all'immagine dell'allegato caricato dopo il caricamento


8

Dopo aver caricato un allegato in Wordpress usando la schermata di caricamento multimediale, c'è un hook o un filtro che posso eseguire dopo che l'immagine è stata caricata dove posso ottenere il percorso dell'immagine caricata in modo da poterlo analizzare?

Sto costruendo un plugin che analizzerà un'immagine dopo che è stata caricata e quindi taggo l'immagine con il colore medio che trova nell'immagine. L'unico problema è che non so quale hook posso usare che si attiverà subito dopo il caricamento dell'immagine e quindi un modo per ottenere il percorso del file appena caricato.

Qualsiasi aiuto sarebbe apprezzato con gratitudine.

Risposte:


8

Ho scoperto che ho risolto la mia domanda con l'aiuto di un collega. I due filtri che vengono chiamati dopo il caricamento dei media o quando i media vengono modificati sono; 'add_attachment' e 'edit_attachment'. Ecco il codice che sto usando, quindi controllo per vedere se l'allegato è un'immagine (codice omesso dall'esempio).

function analyse_attachment($attachment_ID)
{          
    $attachment = get_attached_file($attachment_ID); // Gets path to attachment
    update_post_meta($attachment_ID, "image_rgb", $the_colour);
}

add_action("add_attachment", 'analyse_attachment');
add_action("edit_attachment", 'analyse_attachment');

Ovviamente ho omesso alcune cose che non sono rilevanti per la domanda. Ma quel codice viene chiamato subito dopo aver caricato o modificato un allegato.


4

hai due filtri che puoi usare: attachment_fields_to_save che ottiene due parametri ($ post, $ allegato) quindi:

add_filter('attachment_fields_to_save',your_image_analyse_function);

function your_image_analyse_function($post, $attachment){
  $attachment['url']
  //do your stuff
}

e media_send_to_editorche ottiene 3 parametri ($ html, $ send_id, $ allegato) e si attiva dopo aver fatto clic sull'invio all'editor in modo da poter utilizzare ancora $ allegato.

add_filter('media_send_to_editor',your_image_analyse_function);

function your_image_analyse_function($html, $send_id, $attachment){
  $attachment['url']
  //do your stuff
}

Grazie Bainternet, molto utile. Tuttavia, nessuno di questi era quello che stavo cercando. Dopo aver chiesto al nostro sviluppatore PHP senior al lavoro, ha sfogliato i file core di Wordpress e ha trovato un'azione che viene chiamata subito dopo il caricamento di un'immagine o di qualsiasi altra cosa. Bene, ce ne sono due: "add_attachment" e "edit_attachment" lo pubblicherò come risposta per altre persone.
Dwayne Charrington,

0

Markup HTML:

<p>
  <label for="custom-upload">Upload New Image:</label>
  <input type="file" tabindex="3" name="custom-upload" id="custom-upload" />
</p>
<?php
  /*Retrieving the image*/
  $attachment = get_post_meta($postid, 'custom_image');

  if($attachment[0]!='')
  {
   echo wp_get_attachment_link($attachment[0], 'thumbnail', false, false);
  }

?>

Caricamento dell'immagine:

<?php
global $post; /*Global post object*/
$post_id = $post->ID; /*Geting current post id*/
$upload = $_FILES['upload']; /*Receive the uploaded image from form*/
add_custom_image($post_id, $upload); /*Call image uploader function*/

function add_custom_image($post_id, $upload)
{
 $uploads = wp_upload_dir(); /*Get path of upload dir of wordpress*/

 if (is_writable($uploads['path']))  /*Check if upload dir is writable*/
 {
  if ((!empty($upload['tmp_name'])))  /*Check if uploaded image is not empty*/
  {
   if ($upload['tmp_name'])   /*Check if image has been uploaded in temp directory*/
   {
    $file=handle_image_upload($upload); /*Call our custom function to ACTUALLY upload the image*/

    $attachment = array  /*Create attachment for our post*/
    (
      'post_mime_type' => $file['type'],  /*Type of attachment*/
      'post_parent' => $post_id,  /*Post id*/
    );

    $aid = wp_insert_attachment($attachment, $file['file'], $post_id);  /*Insert post attachment and return the attachment id*/
    $a = wp_generate_attachment_metadata($aid, $file['file'] );  /*Generate metadata for new attacment*/
    $prev_img = get_post_meta($post_id, 'custom_image');  /*Get previously uploaded image*/
    if(is_array($prev_img))
    {
     if($prev_img[0] != '')  /*If image exists*/
     {
      wp_delete_attachment($prev_img[0]);  /*Delete previous image*/
     }
    }
    update_post_meta($post_id, 'custom_image', $aid);  /*Save the attachment id in meta data*/

    if ( !is_wp_error($aid) ) 
    {
     wp_update_attachment_metadata($aid, wp_generate_attachment_metadata($aid, $file['file'] ) );  /*If there is no error, update the metadata of the newly uploaded image*/
    }
   }
  }
  else
  {
   echo 'Please upload the image.';
  }
 }
}

function handle_image_upload($upload)
{
 global $post;

        if (file_is_displayable_image( $upload['tmp_name'] )) /*Check if image*/
        {
            /*handle the uploaded file*/
            $overrides = array('test_form' => false);
            $file=wp_handle_upload($upload, $overrides);
        }
 return $file;
}
?>
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.