*/ private function register_i18n_promo_class() { new Yoast_I18n_v3( [ 'textdomain' => 'wordpress-seo-premium', 'project_slug' => 'wordpress-seo-premium', 'plugin_name' => 'Yoast SEO premium', 'hook' => 'wpseo_admin_promo_footer', 'api_url' => 'https://translationspress.com/app/api/yoast/wordpress-seo-premium/', 'glotpress_name' => 'Yoast Translate', 'glotpress_logo' => 'https://yoast.com/app/uploads/yoast/Yoast_Translate.svg', 'register_url' => 'https://yoa.st/translationspress', ] ); } /** * Sets the autoloader for the redirects and instantiates the redirect page object. * * @return void */ private function redirect_setup() { $this->redirects = new WPSEO_Redirect_Page(); // Adds integration that filters redirected entries from the sitemap. $this->integrations['redirect-sitemap-filter'] = new WPSEO_Redirect_Sitemap_Filter( home_url() ); } /** * Initialize the watchers for the posts and the terms */ public function init_watchers() { // The Post Watcher. $post_watcher = new WPSEO_Post_Watcher(); $post_watcher->register_hooks(); // The Term Watcher. $term_watcher = new WPSEO_Term_Watcher(); $term_watcher->register_hooks(); } /** * Hooks into the `redirect_canonical` filter to catch ongoing redirects and move them to the correct spot * * @param string $redirect_url The target url where the requested URL will be redirected to. * @param string $requested_url The current requested URL. * * @return string */ public function redirect_canonical_fix( $redirect_url, $requested_url ) { $redirects = new WPSEO_Redirect_Option( false ); $path = wp_parse_url( $requested_url, PHP_URL_PATH ); $redirect = $redirects->get( $path ); if ( $redirect === false ) { return $redirect_url; } $redirect_url = $redirect->get_origin(); if ( substr( $redirect_url, 0, 1 ) === '/' ) { $redirect_url = home_url( $redirect_url ); } wp_redirect( $redirect_url, $redirect->get_type(), 'Yoast SEO Premium' ); exit; } /** * Add 'Create Redirect' option to admin bar menu on 404 pages */ public function admin_bar_menu() { // Prevent function from running if the page is not a 404 page or the user has not the right capabilities to create redirects. if ( ! is_404() || ! WPSEO_Capability_Utils::current_user_can( 'wpseo_manage_options' ) ) { return; } global $wp, $wp_admin_bar; $parsed_url = wp_parse_url( home_url( $wp->request ) ); if ( ! is_array( $parsed_url ) || empty( $parsed_url['path'] ) ) { return; } $old_url = WPSEO_Redirect_Util::strip_base_url_path_from_url( home_url(), $parsed_url['path'] ); if ( isset( $parsed_url['query'] ) && $parsed_url['query'] !== '' ) { $old_url .= '?' . $parsed_url['query']; } $old_url = rawurlencode( $old_url ); $node = [ 'id' => 'wpseo-premium-create-redirect', 'title' => __( 'Create Redirect', 'wordpress-seo-premium' ), 'href' => admin_url( 'admin.php?page=wpseo_redirects&old_url=' . $old_url ), ]; $wp_admin_bar->add_menu( $node ); } /** * Add page analysis to array with variable array key patterns * * @param array $patterns Array with patterns for page analysis. * * @return array */ public function add_variable_array_key_pattern( $patterns ) { if ( in_array( 'page-analyse-extra-', $patterns, true ) === false ) { $patterns[] = 'page-analyse-extra-'; } return $patterns; } /** * This hook will add an input-field for specifying custom fields for page analysis. * * The values will be comma-separated and will target the belonging field in the post_meta. Page analysis will * use the content of it by sticking it to the post_content. * * @param Yoast_Form $yform The Yoast_Form object. * @param string $name The post type name. */ public function admin_page_meta_post_types_checkboxes( $yform, $name ) { $custom_fields_help_link = new Help_Link_Presenter( WPSEO_Shortlinker::get( 'https://yoa.st/4cr' ), __( 'Learn more about including custom fields in the page analysis', 'wordpress-seo-premium' ) ); echo '