web-dev-qa-db-fra.com

$ wpdb-> get_var ne retourne pas de résultat

J'ai lancé mysql et confirmé que cette requête renvoie un résultat:

mysql> SELECT * FROM wp_posts WHERE post_parent = 68 AND post_type = 'attachment' AND post_name = 'side-logo-auto2' LIMIT 1;
1 row in set (0.00 sec)

Dans mon modèle, je tente la même chose:

<?php if ( have_posts() ) : while ( have_posts() ) : the_post();

    //$wpdb->posts is wp_posts table
    //$post->ID is current post of post_type page, 
    //that is associated with page of this template

    global $wpdb;
    $image = $wpdb->get_var(
        $wpdb->prepare(
            "SELECT * FROM $wpdb->posts
             WHERE post_parent = %d
             AND post_type = %s
             AND post_name = %s
             LIMIT 1
            ",
            $post->ID,
            'attachment',
            'side-logo-auto2'
        )
    );
    echo "The image id is {$image->ID}";
    echo wp_get_attachment_image($image->ID);

endwhile; endif; ?> 

$ post-> ID renvoie 68. Cependant, la valeur assignée à $ image n'est pas l'enregistrement, mais bien null.

2
JohnMerlino

$wpdb->get_var renvoie une seule variable, mais votre instruction SQL a SELECT * qui renvoie une ligne de plusieurs colonnes.

Vous devez modifier votre instruction SQL en SELECT ID ... au lieu de SELECT * ...

8
anu