Changeset 3491327
- Timestamp:
- 03/26/2026 12:01:04 AM (10 days ago)
- Location:
- rank-authority
- Files:
-
- 9 added
- 2 edited
-
tags/1.0.36 (added)
-
tags/1.0.36/assets (added)
-
tags/1.0.36/assets/icon.svg (added)
-
tags/1.0.36/rank-authority.php (added)
-
tags/1.0.36/readme.txt (added)
-
tags/1.0.36/templates (added)
-
tags/1.0.36/templates/category-geo.php (added)
-
tags/1.0.36/templates/page-geo.php (added)
-
tags/1.0.36/uninstall.php (added)
-
trunk/rank-authority.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rank-authority/trunk/rank-authority.php
r3485183 r3491327 4 4 * Plugin URI: https://rankauthority.com/plugins/rankauthority 5 5 * Description: Secure API connector to publish posts / overwrite posts from the RA Dashboard to WordPress. Token reset now available to all administrators. 6 * Version: 1.0.3 56 * Version: 1.0.36 7 7 * Author: Rank Authority 8 8 * Author URI: https://rankauthority.com … … 40 40 add_action('wp_head', [$this, 'output_custom_css'], 5); 41 41 add_action('wp_head', [$this, 'output_social_meta_tags'], 2); 42 add_action('pre_get_posts', [$this, 'optimize_feed_for_indexing']); 42 43 } 43 44 … … 2803 2804 } 2804 2805 } 2806 2807 /** Sort RSS feed by modified date so updated posts appear first for faster Google discovery */ 2808 public function optimize_feed_for_indexing($query) { 2809 if ($query->is_feed() && $query->is_main_query()) { 2810 $query->set('orderby', 'modified'); 2811 $query->set('order', 'DESC'); 2812 $query->set('posts_per_rss', 50); 2813 } 2814 } 2805 2815 } 2806 2816 -
rank-authority/trunk/readme.txt
r3485183 r3491327 5 5 Tested up to: 6.9 6 6 Requires PHP: 7.4 7 Stable tag: 1.0.3 57 Stable tag: 1.0.36 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 137 137 138 138 == Changelog == 139 140 = 1.0.36 = 141 * RSS / Atom feeds: main site feed orders posts by last modified date (newest changes first) instead of publish date only 142 * Feed requests up to 50 items per request so recently updated posts surface faster for crawlers and subscribers 139 143 140 144 = 1.0.35 = … … 346 350 == Upgrade Notice == 347 351 352 = 1.0.36 = 353 RSS and Atom feeds now sort by modified date with a higher default item count so updates are discovered sooner. No dashboard or API changes required. 354 348 355 = 1.0.35 = 349 356 PUT response now always includes schema for consistency. Use the response to verify stored structured data regardless of whether schema was sent in the request.
Note: See TracChangeset
for help on using the changeset viewer.