function get_first_post_image(string $post_content): string
function get_first_post_image(string $post_content)
return $img->item(0)->getAttribute('src') ?: $defaultImage;
return $img->item(0)->getAttribute('src') ? $img->item(0)->getAttribute('src') : $defaultImage;