File: /var/www/linde/wp-content/plugins/lindevr-site-plugin/faqs/rest/helpers.php
<?php
// place any helper functions that the FAQs rest APIs might need here
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
/**
* Gets featured image renditions for a post
*/
function get_api_image_renditions($post_id) {
if (!has_post_thumbnail($post_id)) {
return null;
}
return [
'medium' => get_the_post_thumbnail_url($post_id, '19x6_medium'),
'large' => get_the_post_thumbnail_url($post_id, '19x6_medium_plus'),
'full' => get_the_post_thumbnail_url($post_id, 'full'),
];
}
?>