Changeset 3074557
- Timestamp:
- 04/21/2024 02:19:39 PM (21 months ago)
- Location:
- indexnow
- Files:
-
- 41 added
- 5 deleted
- 6 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/CODE_OF_CONDUCT.md (added)
-
tags/1.0.2/LICENSE.txt (added)
-
tags/1.0.2/README.md (added)
-
tags/1.0.2/SECURITY.md (added)
-
tags/1.0.2/admin (added)
-
tags/1.0.2/admin/class-indexnow-url-submission-admin.php (added)
-
tags/1.0.2/admin/index.php (added)
-
tags/1.0.2/admin/js (added)
-
tags/1.0.2/admin/js/indexnow-url-submission-admin.js (added)
-
tags/1.0.2/admin/partials (added)
-
tags/1.0.2/admin/partials/indexnow-url-submission-admin-react.php (added)
-
tags/1.0.2/admin/utils (added)
-
tags/1.0.2/admin/utils/class-indexnow-url-submission-admin-routes.php (added)
-
tags/1.0.2/admin/utils/class-indexnow-url-submission-admin-utils.php (added)
-
tags/1.0.2/asset-manifest.json (added)
-
tags/1.0.2/includes (added)
-
tags/1.0.2/includes/class-indexnow-url-submission-activator.php (added)
-
tags/1.0.2/includes/class-indexnow-url-submission-deactivator.php (added)
-
tags/1.0.2/includes/class-indexnow-url-submission-loader.php (added)
-
tags/1.0.2/includes/class-indexnow-url-submission.php (added)
-
tags/1.0.2/includes/index.php (added)
-
tags/1.0.2/index.html (added)
-
tags/1.0.2/index.php (added)
-
tags/1.0.2/indexnow-url-submission.php (added)
-
tags/1.0.2/publish (added)
-
tags/1.0.2/readme.txt (added)
-
tags/1.0.2/static (added)
-
tags/1.0.2/static/css (added)
-
tags/1.0.2/static/css/main.ed29f9a1.css (added)
-
tags/1.0.2/static/css/main.ed29f9a1.css.map (added)
-
tags/1.0.2/static/js (added)
-
tags/1.0.2/static/js/main.50f7f55e.js (added)
-
tags/1.0.2/static/js/main.50f7f55e.js.LICENSE.txt (added)
-
tags/1.0.2/static/js/main.50f7f55e.js.map (added)
-
tags/1.0.2/uninstall.php (added)
-
trunk/README.md (modified) (2 diffs)
-
trunk/admin/utils/class-indexnow-url-submission-admin-routes.php (modified) (2 diffs)
-
trunk/asset-manifest.json (modified) (1 diff)
-
trunk/includes/class-indexnow-url-submission.php (modified) (1 diff)
-
trunk/indexnow-url-submission.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/static/css/main.3b7c0031.css (added)
-
trunk/static/css/main.3b7c0031.css.map (added)
-
trunk/static/css/main.ed29f9a1.css (deleted)
-
trunk/static/css/main.ed29f9a1.css.map (deleted)
-
trunk/static/js/main.50f7f55e.js (deleted)
-
trunk/static/js/main.50f7f55e.js.LICENSE.txt (deleted)
-
trunk/static/js/main.50f7f55e.js.map (deleted)
-
trunk/static/js/main.6b93cffc.js (added)
-
trunk/static/js/main.6b93cffc.js.LICENSE.txt (added)
-
trunk/static/js/main.6b93cffc.js.map (added)
Legend:
- Unmodified
- Added
- Removed
-
indexnow/trunk/README.md
r3046151 r3074557 22 22 - Search for `IndexNow Plugin` and install. 23 23 - Once installed, click on `Activate` to enable plugin. 24 - Go to IndexNow admin page under `Settings > IndexNow` and click `Let's Get Started!`.24 - Go to IndexNow admin page and click 'Let's Get Started!'. 25 25 26 26 ## Frequently Asked Questions … … 42 42 Indexing of URLs is specific and dependent on each search engine’s rules, please reach out to individual search engine for debugging and resolution. 43 43 44 ### 1.0.3 45 46 - Fix for resubmit button not working. 47 44 48 ### 1.0.2 45 49 -
indexnow/trunk/admin/utils/class-indexnow-url-submission-admin-routes.php
r3044878 r3074557 115 115 ) ); 116 116 117 register_rest_route( $namespace, $endpoint, array( 118 array( 119 'methods' => \WP_REST_Server::EDITABLE, 120 'callback' => array( $this, 'resubmit_submissions' ), 121 'permission_callback' => array( $this, 'admin_permissions_check' ), 122 ), 123 ) ); 124 117 125 $endpoint = '/getIndexNowInsightsUrl/'; 118 126 register_rest_route( $namespace, $endpoint, array( … … 120 128 'methods' => \WP_REST_Server::READABLE, 121 129 'callback' => array( $this, 'get_indexnow_insights_url' ), 122 'permission_callback' => array( $this, 'admin_permissions_check' ),123 ),124 ) );125 126 register_rest_route( $namespace, $endpoint, array(127 array(128 'methods' => \WP_REST_Server::EDITABLE,129 'callback' => array( $this, 'resubmit_submissions' ),130 130 'permission_callback' => array( $this, 'admin_permissions_check' ), 131 131 ), -
indexnow/trunk/asset-manifest.json
r3044878 r3074557 1 1 { 2 2 "files": { 3 "main.css": "/static/css/main. ed29f9a1.css",4 "main.js": "/static/js/main. 50f7f55e.js",5 "main.js.map": "/static/js/main. 50f7f55e.js.map",3 "main.css": "/static/css/main.3b7c0031.css", 4 "main.js": "/static/js/main.6b93cffc.js", 5 "main.js.map": "/static/js/main.6b93cffc.js.map", 6 6 "index.html": "/index.html", 7 "static/css/main. ed29f9a1.css.map": "/static/css/main.ed29f9a1.css.map",8 "static/js/main. 50f7f55e.js.LICENSE.txt": "/static/js/main.50f7f55e.js.LICENSE.txt"7 "static/css/main.3b7c0031.css.map": "/static/css/main.3b7c0031.css.map", 8 "static/js/main.6b93cffc.js.LICENSE.txt": "/static/js/main.6b93cffc.js.LICENSE.txt" 9 9 }, 10 10 "entrypoints": [ 11 "static/css/main. ed29f9a1.css",12 "static/js/main. 50f7f55e.js"11 "static/css/main.3b7c0031.css", 12 "static/js/main.6b93cffc.js" 13 13 ] 14 14 } -
indexnow/trunk/includes/class-indexnow-url-submission.php
r3046151 r3074557 57 57 } else { 58 58 59 $this->version = '1.0. 2';59 $this->version = '1.0.3'; 60 60 61 61 } -
indexnow/trunk/indexnow-url-submission.php
r3044932 r3074557 10 10 * Plugin URI: https://www.bing.com/webmaster 11 11 * Description: A small plugin to allow Url submissions to IndexNow. 12 * Version: 1.0. 212 * Version: 1.0.3 13 13 * Author: Microsoft Bing 14 14 * Author URI: https://www.bing.com/indexnow … … 28 28 */ 29 29 30 define( 'BWT_INDEXNOW_PLUGIN_VERSION', '1.0. 2' );30 define( 'BWT_INDEXNOW_PLUGIN_VERSION', '1.0.3' ); 31 31 32 32 /** -
indexnow/trunk/readme.txt
r3062229 r3074557 5 5 Requires at least: 5.3 6 6 Tested up to: 6.5 7 Stable tag: 1.0. 27 Stable tag: 1.0.3 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.txt … … 16 16 == Description == 17 17 18 IndexNow Plugin for WordPress enables automated submission of URLs from WordPress sites to the multiple search engines without the need to register and verify your site with them. Once installed, the plugin will automatically generate and host the API key on your site. It detects page creation/update/ deletion in WordPress and automatically submits the URLs in the background. This ensures that search engines will always have the latest updates about your site. 18 IndexNow Plugin for WordPress enables automated submission of URLs from WordPress sites to the multiple search engines without the need to register and verify your site with them. Once installed, the plugin will automatically generate and host the API key on your site. It detects page creation/update/ deletion in WordPress and automatically submits the URLs in the background. This ensures that search engines will always have the latest updates about your site. This plugin submits URLs to a generic end point `https://api.indexnow.org/indexnow` and these URLs are shared to all participating search engines. 19 19 20 20 Some other handy features included in the plugin: … … 39 39 - Search for 'IndexNow Plugin' and install. 40 40 - Once installed, click on 'Activate' to enable plugin. 41 - Go to IndexNow admin page under 'Settings > IndexNow'and click 'Let's Get Started!'.41 - Go to IndexNow admin page and click 'Let's Get Started!'. 42 42 43 43 == Frequently Asked Questions == … … 62 62 == Changelog == 63 63 64 = 1.0.3 = 65 * Fix for resubmit button not working. 66 64 67 = 1.0.2 = 65 68 * Allow plugin owners of WordPress site to access Indexing Insights in Bing Webmaster tools.
Note: See TracChangeset
for help on using the changeset viewer.