私はプラグインでカスタムファイルを作成し、wp_insert_attachmentのためにWordpress Codexで提供されるコードを使ってそれらをメディアライブラリに追加します。しかし、私のプラグインは時々それらのファイルを上書きします。ファイルがメディアライブラリに再度追加されていないことを確認する必要があります。これが現在のコードです:
$wp_filetype = wp_check_filetype(basename($filename), null );
$wp_upload_dir = wp_upload_dir();
$attachment = array(
'guid' => $wp_upload_dir['baseurl'] . '/' . _wp_relative_upload_path( $filename ),
'post_mime_type' => $wp_filetype['type'],
'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)),
'post_content' => '',
'post_status' => 'inherit'
);
$attach_id = wp_insert_attachment( $attachment, $filename);
// you must first include the image.php file
// for the function wp_generate_attachment_metadata() to work
require_once(ABSPATH . 'wp-admin/includes/image.php');
$attach_data = wp_generate_attachment_metadata( $attach_id, $filename );
wp_update_attachment_metadata( $attach_id, $attach_data );
そのファイルがすでにメディアライブラリの一部であるかどうかを確認し、存在する場合は更新するだけです。私は一緒に働くpost_idを持っていません。ただパーマリンクとguidだけです。
ご協力いただきありがとうございます。
global $wpdb;
$image_src = wp_upload_dir()['baseurl'] . '/' . _wp_relative_upload_path( $filename );
$query = "SELECT COUNT(*) FROM {$wpdb->posts} WHERE guid='$image_src'";
$count = intval($wpdb->get_var($query));
あなたはあなたのコードのトップでこれを使うことができます。それから$count
の値を確認してください。 0の場合は、添付ファイルを追加し続けることができます
私はこの方法を持っています(ありがとうMridul):
function MediaFileAlreadyExists($filename){
global $wpdb;
$query = "SELECT COUNT(*) FROM {$wpdb->postmeta} WHERE meta_value LIKE '%/$filename'";
return ($wpdb->get_var($query) > 0) ;
}
// MediaFileAlreadyExists("my-image.png");
私はこれが古い質問であることを知っていますが、私はこれらの答えのどれも好きではなかったので、ここに私の解決策があります。
これはファイルが存在するかどうかを確認します。もしそうなら、それは既存の添付ファイルを更新します。そうでない場合は、新しい添付ファイルが作成されます。
// Get upload dir
$upload_dir = wp_upload_dir();
$upload_folder = $upload_dir['path'];
// Set filename, incl path
$filename = "{$upload_folder}/myfile-{$id}.pdf";
// Check the type of file. We'll use this as the 'post_mime_type'.
$filetype = wp_check_filetype( basename( $filename ), null );
// Get the path to the upload directory.
$upload_dir = wp_upload_dir();
// Get file title
$title = preg_replace( '/\.[^.]+$/', '', basename( $filename ) );
// Prepare an array of post data for the attachment.
$attachment_data = array(
'guid' => $upload_dir['url'] . '/' . basename( $filename ),
'post_mime_type' => $filetype['type'],
'post_title' => $title,
'post_content' => '',
'post_status' => 'inherit'
);
// Does the attachment already exist ?
if( post_exists( $title ) ){
$attachment = get_page_by_title( $title, OBJECT, 'attachment');
if( !empty( $attachment ) ){
$attachment_data['ID'] = $attachment->ID;
}
}
// If no parent id is set, reset to default(0)
if( empty( $parent_id ) ){
$parent_id = 0;
}
// Insert the attachment.
$attach_id = wp_insert_attachment( $attachment_data, $filename, $parent_id );
// Generate the metadata for the attachment, and update the database record.
$attach_data = wp_generate_attachment_metadata( $attach_id, $filename );
wp_update_attachment_metadata( $attach_id, $attach_data );
上の例では、$ filenameに.pdfを使用していますが、これを任意のfilename/filetypeに置き換えることができます。
画像が存在するかどうかはpost_exists($filename)
で確認できます。画像が存在する場合は、それを更新することも、作成することもできます
//if image exist update else create it
if (post_exists($filename)){
$page = get_page_by_title($filename, OBJECT, 'attachment');
$attach_id = $page->ID;
$attach_data = wp_generate_attachment_metadata( $attach_id, $destination ); // Generate attachment data, filesize, height, width etc.
wp_update_attachment_metadata( $attach_id, $attach_data ); // Add the above meta data
add_post_meta($attach_id, '_wp_attachment_image_alt', $filealt); // Add the alt text
}
else{
$attach_id = wp_insert_attachment( $attachment, $destination, $post_id );
$attach_data = wp_generate_attachment_metadata( $attach_id, $destination );
wp_update_attachment_metadata( $attach_id, $attach_data );
add_post_meta($attach_id, '_wp_attachment_image_alt', $filealt);
}
この関数は、パラメータとしてメディアファイル名を取り、存在する場合はmeta_idを返し、存在しない場合はfalseを返します。
function MediaFileAlreadyExists($filename){
global $wpdb;
$query = "SELECT meta_id FROM {$wpdb->postmeta} WHERE meta_value LIKE '%/$filename'";
if ( $wpdb->get_var($query) ){
return $wpdb->get_var($query);
}
return false;
}