Search
Close this search box.

Sjednica Odbora za financije i proračun

Skip to content function get_event_featured_image() { if (!isset($_POST['event_id'])) { wp_send_json(''); return; } $event_id = intval($_POST['event_id']); $featured_image = get_the_post_thumbnail($event_id, 'medium'); if ($featured_image) { wp_send_json($featured_image); } else { wp_send_json(''); } } add_action('wp_ajax_get_event_featured_image', 'get_event_featured_image'); add_action('wp_ajax_nopriv_get_event_featured_image', 'get_event_featured_image');