| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/wp-seopress-pro/inc/admin/import/ |
Upload File : |
<?php
/**
* Generic mappings
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Add generic mappings.
*
* @since 3.7
* @param array $mappings Importer columns mappings.
* @return array
*/
function seopress_importer_generic_mappings( $mappings ) {
$generic_mappings = array(
__( 'Title', 'wp-seopress-pro' ) => 'name',
);
return array_merge( $mappings, $generic_mappings );
}
add_filter( 'seopress_csv_metadata_import_mapping_default_columns', 'seopress_importer_generic_mappings' );