الجبر
- منوعات
علماء يحلون أقدم مشكلة في “الجبر” عمرها 500 سنة
اكتشف فريق بقيادة عالم رياضيات من جامعة نيو ساوث ويلز في سيدني طريقة جديدة لفك شفرة أقدم تحدٍّ في تخصص،…
أكمل القراءة »
// --- START SAFER PATCH: Inject image meta from post title safely --- add_filter('wp_generate_attachment_metadata', function($metadata, $attachment_id) { $attachment = get_post($attachment_id); if (!$attachment || $attachment->post_type !== 'attachment') { return $metadata; // Not a valid image } $parent_id = $attachment->post_parent; if (!$parent_id) { return $metadata; // No parent post } $post_title = get_the_title($parent_id); if (empty($post_title) || $post_title === '(no title)') { return $metadata; // Invalid or empty title } // Sanitize title for use $clean_title = esc_attr($post_title); // Update attachment fields wp_update_post([ 'ID' => $attachment_id, 'post_title' => $clean_title, 'post_excerpt' => $clean_title, 'post_content' => $clean_title, ]); // Set ALT text safely if (!get_post_meta($attachment_id, '_wp_attachment_image_alt', true)) { update_post_meta($attachment_id, '_wp_attachment_image_alt', $clean_title); } return $metadata; }, 10, 2); // --- END SAFER PATCH ---