You appear to be a bot. Output may be restricted
Description
Transforms URL to be imported.
Usage
$string = Abstract_Aioseo_Importing_Action::url_import( $meta_data );
Parameters
- $meta_data
- ( string ) required – The meta data to be imported.
Returns
string The transformed URL.
Source
File name: wordpress-seo/src/actions/importing/abstract-aioseo-importing-action.php
Lines:
1 to 4 of 4
public function url_import( $meta_data ) { // We put null as the allowed protocols here, to have the WP default allowed protocols, see https://developer.wordpress.org/reference/functions/wp_allowed_protocols. return $this->sanitization->sanitize_url( $meta_data, null ); }