PHPOPENTAG /** * Plugin Name: Sahafa WebSub Ping * Description: يعلن Hub (WebSub/PubSubHubbub) في راس فيد RSS/Atom بتاع الموقع، وينبه الهب تلقائيا عند نشر مقال جديد (post فقط) عشان يسرع اكتشاف Google Feedfetcher وأي قارئ فيد بيتابع الموقع. غير متزامن (non-blocking) ومفيهوش أي تعديل على ملفات ثانية. * Version: 1.0.0 * Requires at least: 6.0 * Requires PHP: 7.4 * Author: Sahafa * Text Domain: sahafa-websub-ping * License: GPL-2.0+ */ if ( ! defined( 'ABSPATH' ) ) { exit; } define( 'SWP_HUB_URL', 'https://pubsubhubbub.appspot.com/' ); define( 'SWP_THROTTLE_KEY', 'swp_last_ping' ); define( 'SWP_THROTTLE_SECONDS', 60 ); add_action( 'rss2_head', 'swp_output_hub_link' ); add_action( 'atom_head', 'swp_output_hub_link' ); function swp_output_hub_link() { printf( '' . "\n", esc_url( SWP_HUB_URL ) ); } add_action( 'publish_post', 'swp_maybe_ping_hub', 10, 2 ); function swp_maybe_ping_hub( $post_id, $post ) { if ( wp_is_post_revision( $post_id ) || wp_is_post_autosave( $post_id ) ) { return; } if ( get_transient( SWP_THROTTLE_KEY ) ) { return; } set_transient( SWP_THROTTLE_KEY, 1, SWP_THROTTLE_SECONDS ); $feed_urls = array( get_bloginfo( 'rss2_url' ), get_bloginfo( 'atom_url' ), ); foreach ( $feed_urls as $feed_url ) { if ( empty( $feed_url ) ) { continue; } wp_remote_post( SWP_HUB_URL, array( 'timeout' => 5, 'blocking' => false, 'body' => array( 'hub.mode' => 'publish', 'hub.url' => $feed_url, ), ) ); } } التعليقات على: ماذا دار في اللقاء بين هيكل وقائد القوة المشتركة الألمانية؟ https://www.elrsala.com/news/%d9%85%d8%a7%d8%b0%d8%a7-%d8%af%d8%a7%d8%b1-%d9%81%d9%8a-%d8%a7%d9%84%d9%84%d9%82%d8%a7%d8%a1-%d8%a8%d9%8a%d9%86-%d9%87%d9%8a%d9%83%d9%84-%d9%88%d9%82%d8%a7%d8%a6%d8%af-%d8%a7%d9%84%d9%82%d9%88%d8%a9/377713/ الرسالة هو موقع إخباري متخصص بنشر أهم الأخبار المحلية والعربية والعالمية العاجلة أول بأول ويعرض أهم الأحداث والتطورات في الوطن العربي و اسعار الدولار Thu, 06 Aug 2026 14:15:12 +0000 hourly 1 https://wordpress.org/?v=7.0.3