function afi_bulk_fix() { $posts = get_posts([ 'numberposts' => 4, // 👈 مهم جدًا: 4 فقط 'post_type' => 'post', 'post_status' => 'publish', 'meta_query' => [ [ 'key' => '_afi_fixed', 'compare' => 'NOT EXISTS' ] ] ]); if (!$posts) { echo "

✅ لا يوجد مقالات تحتاج إصلاح

"; return; } foreach ($posts as $post) { afi_set_featured($post->ID); // نعلم أنه تم معالجته update_post_meta($post->ID, '_afi_fixed', 1); } echo "

⚡ تم إصلاح 4 مقالات فقط. اضغط مرة أخرى للمتابعة

"; }