web-dev-qa-db-ja.com

プログラムによる投稿へのおすすめ画像の追加

画像のURL /ファイル名、およびそれに関連付けられた投稿IDを指定して、おすすめの画像をプログラムで追加する方法を教えてください。

1
Pim

画像と投稿の組み合わせごとに、以下を実行します。 $image_nameはファイル名、$post_idは投稿IDです。

if( $image_name != '' && !has_post_thumbnail( $post_id ) ){
  $base = get_stylesheet_directory();
  $imgfile= $base . '/import/' . $image_name; // Images are stored inside an imports folder, in the theme directory
  $filename = basename($imgfile);
  $upload_file = wp_upload_bits($filename, null, file_get_contents($imgfile));
  if (!$upload_file['error']) {
    $wp_filetype = wp_check_filetype($filename, null );
    $attachment = array(
      'post_mime_type' => $wp_filetype['type'],
      'post_parent' => 0,
      'post_title' => preg_replace('/\.[^.]+$/', '', $filename),
      'post_content' => '',
      'post_status' => 'inherit'
    );
    $attachment_id = wp_insert_attachment( $attachment, $upload_file['file'], $post_id );

    if (!is_wp_error($attachment_id)) {
      require_once(ABSPATH . "wp-admin" . '/includes/image.php');
      $attachment_data = wp_generate_attachment_metadata( $attachment_id, $upload_file['file'] );
      wp_update_attachment_metadata( $attachment_id,  $attachment_data );
    }
    set_post_thumbnail( $post_id, $attachment_id );

  }
}

大量の画像や投稿を処理する場合、PHPタイムアウトに遭遇する可能性があります。もしそうなら、単に関数を再度実行してください。既に添付されている画像のチェックがあるので、これは問題にならないはずです。

3
Pim