Fatal error: Cannot redeclare get_the_image()
Bu hatayı vermesinin sebebi aynı isimde fonksiyon 2 kere tanımlanmaya çalışıyor. Kullandığınız pluginler de böyle bir fonksiyon tanımlanmış olabilir. Eğer tanımlanmadığına eminseniz aşağıdaki işinizi görecektir.
if(!function_exists('get_the_image')){
function get_the_image($arr = false, $default_size = 'medium', $default_img = false) {
global $post;
$cf_array = load_the_image($arr, $post, $default_size);
$image = display_the_image($cf_array, $post, $default_size, $default_img);
if($image == false) $image = '<!-- No images were added to this post. -->';
return $image;
}
}