私はプログラム的にWPに画像をアップロードしようとしていますが、同じ名前の画像が既に存在するかどうかを確認しています。これは、管理パネルのadd_submenu_page()
経由でプラグイン内から実行しています。
私はforeach()
を使って投稿ごとに2つの画像をアップロードし、投稿のスラッグに基づいてそれらに名前を付けますが、そのうちの1つだけがWPに正しく含まれているので省略存在していてもWPに。
関連するコードは次のとおりです。
// sample vars
$slug = 'my-post-slug';
$card['img'] = 'http://example.com/img1.jpg';
$card['imgGold'] = 'http://example.com/img2.jpg';
// end sample vars
$images = '';
$images[] = $card['img'];
$images[] = $card['imgGold'];
foreach ( $images as $url ) {
// check if current url is for regular or gold image
if ( $card['imgGold'] == $url ) {
$desc = $slug .'-gold';
} else {
$desc = $slug;
}
// check if attachment already exists
$attachment_args = array(
'posts_per_page' => 1,
'post_type' => 'attachment',
'name' => $desc
);
$attachment_check = new Wp_Query( $attachment_args );
// if attachment exists, reuse and update data
if ( $attachment_check->have_posts() ) {
echo 'Attachment <strong>'. $desc .'</strong> found, omitting download...<br>';
// do stuff..
// if attachment doesn't exist fetch it from url and save it
} else {
echo 'Attachment <strong>'. $desc .'</strong> not found, downloading...<br>';
// handle image upload from url and assign to post
$src = media_sideload_image( $url, $post_id, $desc, 'src' );
// add post meta
if ( $card['imgGold'] == $url ) {
add_post_meta( $post_id, 'imgGold', $src );
} else {
add_post_meta( $post_id, 'img', $src );
}
} // end attachment exists
} // end foreach image
ゴールドイメージは意図したとおりに機能するものです。通常のものは常に再アップロードされます。しかし、理由はわかりません。
[OK]を私はついに問題を発見しました!添付ファイルと親投稿の両方に同じスラッグを割り当てようとしていましたが、どうやらWordPressはそれを持たないでしょう。 添付ファイルのメディアライブラリの "名前"は正しいですが、実際のスラッグは最後に-2になっていました。
これは固定コードです。単純に イメージスラッグを一意にする :
// sample vars
$slug = 'my-post-slug';
$card['img'] = 'http://example.com/img1.jpg';
$card['imgGold'] = 'http://example.com/img2.jpg';
// end sample vars
$images = '';
$images[] = $card['img'];
$images[] = $card['imgGold'];
foreach ( $images as $url ) {
// check if current url is for regular or gold image
if ( $card['imgGold'] == $url ) {
$desc = $slug .'-img-gold';
} else {
$desc = $slug .'-img';
}
// check if attachment already exists
$attachment_args = array(
'posts_per_page' => 1,
'post_type' => 'attachment',
'name' => $desc
);
$attachment_check = new Wp_Query( $attachment_args );
// if attachment exists, reuse and update data
if ( $attachment_check->have_posts() ) {
echo 'Attachment <strong>'. $desc .'</strong> found, omitting download...<br>';
// do stuff..
// if attachment doesn't exist fetch it from url and save it
} else {
echo 'Attachment <strong>'. $desc .'</strong> not found, downloading...<br>';
// handle image upload from url and assign to post
$src = media_sideload_image( $url, $post_id, $desc, 'src' );
// add post meta
if ( $card['imgGold'] == $url ) {
add_post_meta( $post_id, 'imgGold', $src );
} else {
add_post_meta( $post_id, 'img', $src );
}
} // end attachment exists
} // end foreach image