How to get the post thumbnail with global post ID

JudeAinsly

I have two different post types where I want to have a relationship. Authors can list one business(post type - "listings") and many special offers (post type - "special_offers"). In each single special offer page, I need to display which business offers that specific offer. Currently I'm using this code, and it outputs the Business name correctly. I need the business logo to be there as well (featured image)

function get_author_business() {
global $authordata, $post;

$authors_posts = get_posts( array( 'author' => $authordata->ID, 'post_type' => 'listings', 'post__not_in' => array( $post->ID ), 'posts_per_page' => -1 ) );

foreach ( $authors_posts as $authors_post ) {
    $output .= '<a href="' . get_permalink( $authors_post->ID ) . '">' . apply_filters( 'the_title', $authors_post->post_title, $authors_post->ID ) . '</a>';
}

return $output;

}

Yamu

This might help (i'm assuming you are trying to get the image tag inside your output html)

function get_author_business() {
global $authordata, $post;

$authors_posts = get_posts( array( 'author' => $authordata->ID, 'post_type' => 'listings', 'post__not_in' => array( $post->ID ), 'posts_per_page' => -1 ) );

foreach ( $authors_posts as $authors_post ) {
    $business_img = wp_get_attachment_image_src( get_post_thumbnail_id( $authors_post->ID ), 'thumbnail' );
    $output .= '<img src="'.$business_img[0].'"><a href="' . get_permalink( $authors_post->ID ) . '">' . apply_filters( 'the_title', $authors_post->post_title, $authors_post->ID ) . '</a>';
}

return $output;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to get Post thumbnail url

From Dev

Facebook API post: How to get larger thumbnail?

From Dev

How to get dimensions of Post Thumbnail in WordPress

From Dev

How to get the medium size post thumbnail url in wordpress?

From Dev

How to get the medium size post thumbnail url in wordpress?

From Dev

Wordpress. How to get post thumbnail without default class?

From Dev

Get Wordpress posts so things like get_post_thumbnail_id don't make a database call

From Dev

Post thumbnail as div background by shortcode and special post ID

From Dev

Post thumbnail as div background by shortcode and special post ID

From Dev

Wordpress: get_the_post_thumbnail_url by id defined in value of custom field

From Dev

How to display post thumbnail with modified url in php?

From Dev

How Can i set the Img Post Thumbnail as a background of whole post

From Dev

How to get Last post Id of custom post type in wordpress

From Dev

How to get WordPress post featured image from post ID in url

From Dev

How to get Last post Id of custom post type in wordpress

From Dev

How to get WordPress post featured image from post ID in url

From Dev

WORDPRESS Post Thumbnail -> Link to post

From Dev

How to get post by tag_id of the category

From Dev

How can i get the facebook post id?

From Dev

how to get the current id of a post while commenting to it

From Dev

How to get Category name by id post in wordpress

From Dev

Wordpress - How to get the next new post ID

From Dev

How to get a post thumbnail with the WP Offload S3 Wordpress plugin

From Dev

Wordpress Post Thumbnail Issue

From Dev

get post Id in plugin

From Dev

Remove _thumbnail_id from all custom post type

From Dev

Wordpress get post id with matched post content

From Dev

Twitter-clone Redis global post id

From Dev

How to remove three dots at the end of post thumbnail on blogger

Related Related

  1. 1

    How to get Post thumbnail url

  2. 2

    Facebook API post: How to get larger thumbnail?

  3. 3

    How to get dimensions of Post Thumbnail in WordPress

  4. 4

    How to get the medium size post thumbnail url in wordpress?

  5. 5

    How to get the medium size post thumbnail url in wordpress?

  6. 6

    Wordpress. How to get post thumbnail without default class?

  7. 7

    Get Wordpress posts so things like get_post_thumbnail_id don't make a database call

  8. 8

    Post thumbnail as div background by shortcode and special post ID

  9. 9

    Post thumbnail as div background by shortcode and special post ID

  10. 10

    Wordpress: get_the_post_thumbnail_url by id defined in value of custom field

  11. 11

    How to display post thumbnail with modified url in php?

  12. 12

    How Can i set the Img Post Thumbnail as a background of whole post

  13. 13

    How to get Last post Id of custom post type in wordpress

  14. 14

    How to get WordPress post featured image from post ID in url

  15. 15

    How to get Last post Id of custom post type in wordpress

  16. 16

    How to get WordPress post featured image from post ID in url

  17. 17

    WORDPRESS Post Thumbnail -> Link to post

  18. 18

    How to get post by tag_id of the category

  19. 19

    How can i get the facebook post id?

  20. 20

    how to get the current id of a post while commenting to it

  21. 21

    How to get Category name by id post in wordpress

  22. 22

    Wordpress - How to get the next new post ID

  23. 23

    How to get a post thumbnail with the WP Offload S3 Wordpress plugin

  24. 24

    Wordpress Post Thumbnail Issue

  25. 25

    get post Id in plugin

  26. 26

    Remove _thumbnail_id from all custom post type

  27. 27

    Wordpress get post id with matched post content

  28. 28

    Twitter-clone Redis global post id

  29. 29

    How to remove three dots at the end of post thumbnail on blogger

HotTag

Archive