Il mio plugin utilizza il seguente codice per fare riferimento a un file, ma ho letto WP_PLUGIN_DIR
che non funzionerà se un utente rinomina la cartella del plugin predefinita. Vorrei anche sostituire /location-specific-menu-items/
con un riferimento alla cartella del plugin corrente.
$gi = geoip_open(WP_PLUGIN_DIR ."/location-specific-menu-items/GeoIP.dat", GEOIP_STANDARD);
Come potrei riscriverlo per farlo funzionare indipendentemente dai nomi della directory del plugin WP e della cartella specifica del plugin?
MODIFICARE:
Ecco la mia soluzione di lavoro finale che segue il contributo di tutti. Grazie molto!
$GeoIPv4_file = plugin_dir_path( __FILE__ ) . 'data/GeoIPv4.dat';
$GeoIPv6_file = plugin_dir_path( __FILE__ ) . 'data/GeoIPv6.dat';
if (!filter_var($ip_address, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) === FALSE) {
if ( is_readable ( $GeoIPv4_file ) ) {
$gi = geoip_open( $GeoIPv4_file, GEOIP_STANDARD );
$user_country = geoip_country_code_by_addr($gi, $ip_address);
geoip_close($gi);
}
} elseif (!filter_var($ip_address, FILTER_VALIDATE_IP,FILTER_FLAG_IPV6) === FALSE) {
if ( is_readable ( $GeoIPv6_file ) ) {
$gi = geoip_open( $GeoIPv6_file, GEOIP_STANDARD );
$user_country = geoip_country_code_by_addr($gi, $ip_address);
geoip_close($gi);
}
} else {
$user_country = "Can't locate IP: " . $ip_address;
}