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%87%d9%84-%d8%aa%d8%b4%d9%87%d8%af-%d8%a3%d8%b3%d8%b9%d8%a7%d8%b1-%d8%a7%d9%84%d8%a3%d8%b1%d8%b2-%d9%81%d9%8a-%d9%85%d8%b5%d8%b1-%d8%aa%d8%b0%d8%a8%d8%b0%d8%a8%d8%a7%d9%8b-%d8%ac%d8%af%d9%8a%d8%af/97381/ الرسالة هو موقع إخباري متخصص بنشر أهم الأخبار المحلية والعربية والعالمية العاجلة أول بأول ويعرض أهم الأحداث والتطورات في الوطن العربي و اسعار الدولار Mon, 03 Jul 2023 16:59:04 +0000 hourly 1 https://wordpress.org/?v=7.0.3