NO G `LD a:0:{} M a:0:{} on BALS on BALS su_ ALS 12834 S on BALS hide g a:0:{} yes button bottom qA config a:0:{} hA null 8.13.0 YES ALS 6.7.3 S a:0:{} sitemap a:0:{} 5814 is_page is_home is_tag is_feed is_shop a:0:{} 6.6.5 hide a:0:{} a:0:{} 4.5.5 3554 tf a:0:{} OK a99d Nein 1.177.0 9.11.0 _blank 1.26.5 banner 1.1 */ month month 7.4.0 fade k #fff #00a99d 8 L 4342 @EE 165686 28 pos #000000 page true 1.20.5 p 6.1.6 10 Q checked V 247 show Q post false 3.6.0 r 1.1 / m_21471 (KV Q 100 Q gzip Q Q Q Q false Q false Never false php enabled Q 14.16.8 Q 12.6.13 Q Q page Q 55 se 7.11.48 7.11.48 1 wpcf7 no pos 2.0.16 1.1.16 8.2.2 ]² fs_gdpr legacy 2.5.4 2.8.8 a:0:{} http s footer a:0:{} 1800 a:0:{} feed curl 7.11.48 Q m_21471 Q B I1 de_DE m_21471 a in: 1.5.5 TRANSIENT ); $this->indexing_helper->set_reason( Indexing_Reasons::REASON_TAXONOMY_MADE_PUBLIC ); $this->maybe_add_notification(); } // There are taxonomies that have been made private. if ( ! empty( $newly_made_non_public_taxonomies ) ) { // Schedule a cron job to remove all the terms whose taxonomy has been made private. $cleanup_not_yet_scheduled = ! \wp_next_scheduled( Cleanup_Integration::START_HOOK ); if ( $cleanup_not_yet_scheduled ) { \wp_schedule_single_event( ( \time() + ( \MINUTE_IN_SECONDS * 5 ) ), Cleanup_Integration::START_HOOK ); } } } /** * Decides if a notification should be added in the notification center. * * @return void */ private function maybe_add_notification() { $notification = $this->notification_center->get_notification_by_id( 'taxonomies-made-public' ); if ( \is_null( $notification ) ) { $this->add_notification(); } } /** * Adds a notification to be shown on the next page request since posts are updated in an ajax request. * * @return void */ private function add_notification() { $message = \sprintf( /* translators: 1: Opening tag of the link to the Search appearance settings page, 2: Link closing tag. */ \esc_html__( 'It looks like you\'ve added a new taxonomy to your website. We recommend that you review your %1$sSettings%2$s under Categories & tags.', 'wordpress-seo' ), '', '' ); $notification = new Yoast_Notification( $message, [ 'type' => Yoast_Notification::WARNING, 'id' => 'taxonomies-made-public', 'capabilities' => 'wpseo_manage_options', 'priority' => 0.8, ] ); $this->notification_center->add_notification( $notification ); } }