wpseo_indexing_endpoints

wpseo_indexing_endpoints

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.24.8.1

apply_filters('wpseo_indexing_endpoints') is found 2 times:

  • /src/integrations/admin/first-time-configuration-integration.php line 248
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
            'post_link'          => Indexing_Route::FULL_POST_LINKS_INDEXING_ROUTE,
            'term_link'          => Indexing_Route::FULL_TERM_LINKS_INDEXING_ROUTE,
        ];
     
        $endpoints = \apply_filters( 'wpseo_indexing_endpoints', $endpoints );
     
        $endpoints['complete'] = Indexing_Route::FULL_COMPLETE_ROUTE;
     
        return $endpoints;
    }
  • /src/integrations/admin/indexing-tool-integration.php line 225
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
            'post_link'          => Indexing_Route::FULL_POST_LINKS_INDEXING_ROUTE,
            'term_link'          => Indexing_Route::FULL_TERM_LINKS_INDEXING_ROUTE,
        ];
     
        $endpoints = \apply_filters( 'wpseo_indexing_endpoints', $endpoints );
     
        $endpoints['complete'] = Indexing_Route::FULL_COMPLETE_ROUTE;
     
        return $endpoints;
    }