Plugin Directory

Changeset 3074557


Ignore:
Timestamp:
04/21/2024 02:19:39 PM (21 months ago)
Author:
bingwebmastertools
Message:

Fix for resubmit button no working

Location:
indexnow
Files:
41 added
5 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • indexnow/trunk/README.md

    r3046151 r3074557  
    2222- Search for `IndexNow Plugin` and install.
    2323- 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!'.
    2525
    2626## Frequently Asked Questions
     
    4242Indexing of URLs is specific and dependent on each search engine’s rules, please reach out to individual search engine for debugging and resolution.
    4343
     44### 1.0.3
     45
     46- Fix for resubmit button not working.
     47
    4448### 1.0.2
    4549
  • indexnow/trunk/admin/utils/class-indexnow-url-submission-admin-routes.php

    r3044878 r3074557  
    115115        ) );
    116116
     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
    117125        $endpoint = '/getIndexNowInsightsUrl/';
    118126        register_rest_route( $namespace, $endpoint, array(
     
    120128                'methods'               => \WP_REST_Server::READABLE,
    121129                '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' ),
    130130                'permission_callback'   => array( $this, 'admin_permissions_check' ),
    131131            ),
  • indexnow/trunk/asset-manifest.json

    r3044878 r3074557  
    11{
    22  "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",
    66    "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"
    99  },
    1010  "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"
    1313  ]
    1414}
  • indexnow/trunk/includes/class-indexnow-url-submission.php

    r3046151 r3074557  
    5757        } else {
    5858
    59             $this->version = '1.0.2';
     59            $this->version = '1.0.3';
    6060
    6161        }
  • indexnow/trunk/indexnow-url-submission.php

    r3044932 r3074557  
    1010 * Plugin URI:        https://www.bing.com/webmaster
    1111 * Description:       A small plugin to allow Url submissions to IndexNow.
    12  * Version:           1.0.2
     12 * Version:           1.0.3
    1313 * Author:            Microsoft Bing
    1414 * Author URI:        https://www.bing.com/indexnow
     
    2828 */
    2929
    30 define( 'BWT_INDEXNOW_PLUGIN_VERSION', '1.0.2' );
     30define( 'BWT_INDEXNOW_PLUGIN_VERSION', '1.0.3' );
    3131
    3232/**
  • indexnow/trunk/readme.txt

    r3062229 r3074557  
    55Requires at least: 5.3
    66Tested up to: 6.5
    7 Stable tag: 1.0.2
     7Stable tag: 1.0.3
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.txt
     
    1616== Description ==
    1717
    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.
     18IndexNow 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.
    1919
    2020Some other handy features included in the plugin:
     
    3939- Search for 'IndexNow Plugin' and install.
    4040- 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!'.
    4242
    4343== Frequently Asked Questions ==
     
    6262== Changelog ==
    6363
     64= 1.0.3 =
     65* Fix for resubmit button not working.
     66
    6467= 1.0.2 =
    6568* Allow plugin owners of WordPress site to access Indexing Insights in Bing Webmaster tools.
Note: See TracChangeset for help on using the changeset viewer.