Submit
Path:
~
/
home
/
getwphos
/
www
/
shellfish
/
wp-content
/
plugins
/
wordpress-seo
/
src
/
integrations
/
watchers
/
File Content:
indexable-category-permalink-watcher.php
<?php namespace Yoast\WP\SEO\Integrations\Watchers; use WPSEO_Utils; use Yoast\WP\SEO\Config\Indexing_Reasons; /** * Watches the stripcategorybase key in wpseo_titles, in order to clear the permalink of the category indexables. */ class Indexable_Category_Permalink_Watcher extends Indexable_Permalink_Watcher { /** * Initializes the integration. * * This is the place to register hooks and filters. * * @return void */ public function register_hooks() { \add_action( 'update_option_wpseo_titles', [ $this, 'check_option' ], 10, 2 ); } /** * Checks if the stripcategorybase key in wpseo_titles has a change in value, and if so, * clears the permalink for category indexables. * * @param array $old_value The old value of the wpseo_titles option. * @param array $new_value The new value of the wpseo_titles option. * * @return void */ public function check_option( $old_value, $new_value ) { // If this is the first time saving the option, in which case its value would be false. if ( $old_value === false ) { $old_value = []; } // If either value is not an array, return. if ( ! \is_array( $old_value ) || ! \is_array( $new_value ) ) { return; } // If both values aren't set, they haven't changed. if ( ! isset( $old_value['stripcategorybase'] ) && ! isset( $new_value['stripcategorybase'] ) ) { return; } // If a new value has been set for 'stripcategorybase', clear the category permalinks. if ( $old_value['stripcategorybase'] !== $new_value['stripcategorybase'] ) { $this->indexable_helper->reset_permalink_indexables( 'term', 'category', Indexing_Reasons::REASON_CATEGORY_BASE_PREFIX ); // Clear the rewrites, so the new permalink structure is used. WPSEO_Utils::clear_rewrites(); } } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
addon-update-watcher.php
7309 bytes
0644
auto-update-watcher.php
1530 bytes
0644
indexable-ancestor-watcher.php
8418 bytes
0644
indexable-attachment-watcher.php
4881 bytes
0644
indexable-author-archive-watcher.php
2382 bytes
0644
indexable-author-watcher.php
3592 bytes
0644
indexable-category-permalink-watcher.php
1780 bytes
0644
indexable-date-archive-watcher.php
2589 bytes
0644
indexable-home-page-watcher.php
3638 bytes
0644
indexable-homeurl-watcher.php
2824 bytes
0644
indexable-permalink-watcher.php
7940 bytes
0644
indexable-post-meta-watcher.php
2970 bytes
0644
indexable-post-type-archive-watcher.php
4061 bytes
0644
indexable-post-type-change-watcher.php
5118 bytes
0644
indexable-post-watcher.php
10132 bytes
0644
indexable-static-home-page-watcher.php
2253 bytes
0644
indexable-system-page-watcher.php
2707 bytes
0644
indexable-taxonomy-change-watcher.php
5176 bytes
0644
indexable-term-watcher.php
3758 bytes
0644
option-titles-watcher.php
3379 bytes
0644
option-wpseo-watcher.php
4193 bytes
0644
primary-category-quick-edit-watcher.php
5682 bytes
0644
primary-term-watcher.php
4516 bytes
0644
search-engines-discouraged-watcher.php
7146 bytes
0644
woocommerce-beta-editor-watcher.php
4251 bytes
0644
N4ST4R_ID | Naxtarrr