Our posts have two different images that are specified, the standard featured image, which is displayed at the top of the page and a cover image which is then used in the body, the cover image has it's own field.
How can I get the post grid to use the cover image instead of the default featured image?
Is this something that can be done in the pro version?
Thanks!
![don't use featured image for thumbnail 2 don't use featured image for thumbnail 2](https://pickplugins.com/wp-content/litespeed/avatar/978ff02cf6cfb3e60ade623dd6942a3a.jpg?ver=1738285744)
![don't use featured image for thumbnail 3 don't use featured image for thumbnail 3](https://pickplugins.com/wp-content/litespeed/avatar/60b037d2fe05ceb39acb7f02dbd29bd8.jpg?ver=1738285093)
I am not sure how your second image is saved via meta field, if its save image url then you can directly, you need to add this code to your theme functions.php file
function post_grid_filter_html_media_extra($html_media){ $loop_post_id = get_the_id(); // you need to replace 'meta_key_image_url' by your meta key $meta_key_image_url = get_the_meta($loop_post_id, "meta_key_image_url", true ); if(!empty($meta_key_image_url )) return ''; } add_filter('post_grid_filter_html_media','post_grid_filter_html_media_extra');
Let me know for more help.
Regards
![don't use featured image for thumbnail 3 don't use featured image for thumbnail 3](https://pickplugins.com/wp-content/litespeed/avatar/60b037d2fe05ceb39acb7f02dbd29bd8.jpg?ver=1738285093)
Welcome to our forum.
There is a filter hook for thumbnail so you can filter the thumbnail HTML, please see the documentation.
https://pickplugins.com/documentation/post-grid/filter-hooks/filters-post_grid_filter_html_media/
Let me know if you have any issue.
Regards
Can you please follow my answer at the top.