' . esc_html__( 'This feature has been disabled by the network admin.', 'wordpress-seo' ) . '
'; } /* ********************* DEPRECATED METHODS ********************* */ /** * Retrieve options based on whether we're on multisite or not. * * @since 1.2.4 * @since 2.0 Moved to this class. * @deprecated 8.4 * @codeCoverageIgnore * * @return array The option's value. */ public function get_option() { _deprecated_function( __METHOD__, 'WPSEO 8.4' ); if ( is_network_admin() ) { return get_site_option( $this->option_name ); } return get_option( $this->option_name ); } }