mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
6 lines
350 B
Text
6 lines
350 B
Text
add_filter( 'woocommerce_maxmind_geolocation_database_path', 'woocommerce_new_maxmind_geolocation_database_path' );
|
|
function woocommerce_new_maxmind_geolocation_database_path( $database_path ) {
|
|
$upload_dir = wp_upload_dir();
|
|
$database_path = trailingslashit( $upload_dir['basedir'] ) . 'my-new-folder/dbfile.ext';
|
|
return $database_path;
|
|
}
|