web-dev-qa-db-ja.com

URLを添付ファイル/投稿IDに変える

画像のURLを取得してデータベース内でその画像の添付ファイルまたは投稿IDを見つける方法はありますか。

これが状況です。

投稿コンテンツの 'a'タグで囲まれたすべての 'img'タグを巡回しています。 'img'タグのsrc属性が外側の 'a'タグのhref属性と一致しない場合は、 'img'タグを置き換えます。これを行う際に、削除される 'img'がギャラリーにある場合は、その投稿を削除してから、代わりの 'img'をその場所に置きます。私はこのような関数を使ってみました:

function find_image_post_id($url) {
  global $wpdb;
  $postid = $wpdb->get_var($wpdb->prepare("SELECT DISTINCT ID FROM $wpdb->posts WHERE guid='$url'"));
  if ($postid) {
    return $postid;
  }
  return false;
}

Guidは皮肉なことに世界的にユニークではないので、これは明らかに正しくありません。私は(以前の同じスクリプトの中で)同じ名前のファイルをアップロードしたのですが(なぜですか?それは高解像度で同じ解像度の低解像度バージョンを置き換えようとしているからです)。ディレクトリ、guidは同じに設定されています。 (おそらくバグ)。

私が使用できる他のテクニックはありますか?

31
Ankur

画像を多用するプラグイン用に開発された大幅に改善された機能:

if ( ! function_exists( 'get_attachment_id' ) ) {
    /**
     * Get the Attachment ID for a given image URL.
     *
     * @link   http://wordpress.stackexchange.com/a/7094
     *
     * @param  string $url
     *
     * @return boolean|integer
     */
    function get_attachment_id( $url ) {

        $dir = wp_upload_dir();

        // baseurl never has a trailing slash
        if ( false === strpos( $url, $dir['baseurl'] . '/' ) ) {
            // URL points to a place outside of upload directory
            return false;
        }

        $file  = basename( $url );
        $query = array(
            'post_type'  => 'attachment',
            'fields'     => 'ids',
            'meta_query' => array(
                array(
                    'key'     => '_wp_attached_file',
                    'value'   => $file,
                    'compare' => 'LIKE',
                ),
            )
        );

        // query attachments
        $ids = get_posts( $query );

        if ( ! empty( $ids ) ) {

            foreach ( $ids as $id ) {

                // first entry of returned array is the URL
                if ( $url === array_shift( wp_get_attachment_image_src( $id, 'full' ) ) )
                    return $id;
            }
        }

        $query['meta_query'][0]['key'] = '_wp_attachment_metadata';

        // query attachments again
        $ids = get_posts( $query );

        if ( empty( $ids) )
            return false;

        foreach ( $ids as $id ) {

            $meta = wp_get_attachment_metadata( $id );

            foreach ( $meta['sizes'] as $size => $values ) {

                if ( $values['file'] === $file && $url === array_shift( wp_get_attachment_image_src( $id, $size ) ) )
                    return $id;
            }
        }

        return false;
    }
}
28
Rarst

これらの複雑な関数はすべて、1つの単純な関数にまとめることができます。

attachment_url_to_postid()

添付ファイルIDを取得するには、画像のURLを解析するだけです。

$attachment_id = attachment_url_to_postid( $image_url );
echo $attachment_id;

必要なものはこれだけです。

14
Ego Ipse

フルパスではなくファイル名だけに一致するようにRarstのコードを修正しました。画像が存在しない場合にその画像をサイドロードしようとしている場合に役立ちます。現在のところこれはファイル名が一意である場合にのみ機能しますが、同じファイル名の画像を扱うために後でハッシュチェックを追加する予定です。

function get_attachment_id( $url, $ignore_path = false ) {

if ( ! $ignore_path ) {

    $dir = wp_upload_dir();
    $dir = trailingslashit($dir['baseurl']);

    if( false === strpos( $url, $dir ) )
        return false;
}

$file = basename($url);

$query = array(
    'post_type' => 'attachment',
    'fields' => 'ids',
    'meta_query' => array(
        array(
            'key'     => '_wp_attached_file',
            'value'   => $file,
            'compare' => 'LIKE',
        )
    )
);

$ids = get_posts( $query );

foreach( $ids as $id ) {
    $match = array_shift( wp_get_attachment_image_src($id, 'full') );
    if( $url == $match || ( $ignore_path && strstr( $match, $file ) ) )
        return $id;
}

$query['meta_query'][0]['key'] = '_wp_attachment_metadata';
$ids = get_posts( $query );

foreach( $ids as $id ) {

    $meta = wp_get_attachment_metadata($id);

    foreach( $meta['sizes'] as $size => $values ) {
        if( $values['file'] == $file && ( $ignore_path || $url == array_shift( wp_get_attachment_image_src($id, $size) ) ) )
            return $id;
    }
}

return false;
}
3
Luke Gedeon

わかりました私は今何日も探しているネット上に誰もいないという答えを見つけました。自分のテーマやプラグインがWP_Customize_Image_Control()を使用している場合にのみ機能します。WP_Customize_Media_Control()を使用している場合はget_theme_mod()はURLではなくIDを返します。

私の解決策のために私は新しいバージョンWP_Customize_Image_Control()を使っていました

フォーラムの投稿の多くにget_attachment_id()があり、これはもう機能しません。 attachment_url_to_postid()を使用しました

これが私のやり方です。これが誰かに役立つことを願っています

// This is getting the image / url
$feature1 = get_theme_mod('feature_image_1');

// This is getting the post id
$feature1_id = attachment_url_to_postid($feature1);

// This is getting the alt text from the image that is set in the media area
$image1_alt = get_post_meta( $feature1_id, '_wp_attachment_image_alt', true );

Markup

<a href="<?php echo $feature1_url; ?>"><img class="img-responsive center-block" src="<?php echo $feature1; ?>" alt="<?php echo $image1_alt; ?>"></a>
2
DevTurtle

これが代替ソリューションです:

$image_url = get_field('main_image'); // in case of custom field usage
$image_id = attachment_url_to_postid($image_url);

// retrieve the thumbnail size of our image
$image_thumb = wp_get_attachment_image_src($image_id, 'thumbnail');

WP 4.0以降、彼らはあなたの関数attachment_url_to_postid()と同じように振る舞う関数find_image_post_id()を導入しました。

あなたの参考のために このURL をチェックしてください。

0
Lefan