Coder Social home page Coder Social logo

Comments (5)

chrisscott avatar chrisscott commented on August 17, 2024

@weare2ndfloor if you are wanting it output in the image tag, you can use the filter noted in http://wordpress.org/support/topic/caption-3

Otherwise, if you need it separately, something like this should work (assuming you are in a loop of the post w/the thumbnails):

$thumb_post_id = get_post_thumbnail_id('post', 'secondary-thumbnail', get_the_ID());
$thumb_post = get_post($thumb_post_id);
$caption = trim(strip_tags( $thumb_post->post_excerpt ));

Obviously, you'd want some error handling around getting the thumbnail ID and thumbnail post.

from multi-post-thumbnails.

cdwharton avatar cdwharton commented on August 17, 2024

Hi Chris, this doesn't seem to work :(

from multi-post-thumbnails.

laurentperroteau avatar laurentperroteau commented on August 17, 2024

I found a solution to get "alt", "caption", "description" and "title"using 2 functions from this post:

function get_attachment_id_from_src ($image_src) {
    global $wpdb;
    $query = "SELECT ID FROM {$wpdb->posts} WHERE guid='$image_src'";
    $id = $wpdb->get_var($query);
    return $id;
}

function wp_get_attachment( $attachment_id ) {

    $attachment = get_post( $attachment_id );
    return array(
        'alt' => get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true ),
        'caption' => $attachment->post_excerpt,
        'description' => $attachment->post_content,
        'href' => get_permalink( $attachment->ID ),
        'src' => $attachment->guid,
        'title' => $attachment->post_title
    );
}

Get URL of your image first, then attachment ID and then what you want:

$imgPath = MultiPostThumbnails::get_post_thumbnail_url(get_post_type(), 'secondary-thumbnail');
$imgIdAttachment = get_attachment_id_from_src( $imgPath );
$metaImgDescription = $metaImg['description']; 

from multi-post-thumbnails.

chrisscott avatar chrisscott commented on August 17, 2024

This can be more simply/cleanly/best-practicingly done w/the code noted on this support thread.

from multi-post-thumbnails.

laurentperroteau avatar laurentperroteau commented on August 17, 2024

Mea culpa : finally the chrisscott solution work for me

from multi-post-thumbnails.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.