wpseek.com
				A WordPress-centric search engine for devs and theme authors
			plugin_basename › WordPress Function
Since1.5.0
Deprecatedn/a
› plugin_basename ( $file )
| Parameters: | 
 | 
| Returns: | 
 | 
| Defined at: | 
 | 
| Codex: | 
Gets the basename of a plugin.
This method extracts the name of a plugin from its filename.Related Functions: wp_basename, get_plugin_page_hookname, is_plugin_paused, plugins_api, is_plugin_page
	Source
function plugin_basename( $file ) {
	global $wp_plugin_paths;
	// $wp_plugin_paths contains normalized paths.
	$file = wp_normalize_path( $file );
	arsort( $wp_plugin_paths );
	foreach ( $wp_plugin_paths as $dir => $realdir ) {
		if ( str_starts_with( $file, $realdir ) ) {
			$file = $dir . substr( $file, strlen( $realdir ) );
		}
	}
	$plugin_dir    = wp_normalize_path( WP_PLUGIN_DIR );
	$mu_plugin_dir = wp_normalize_path( WPMU_PLUGIN_DIR );
	// Get relative path from plugins directory.
	$file = preg_replace( '#^' . preg_quote( $plugin_dir, '#' ) . '/|^' . preg_quote( $mu_plugin_dir, '#' ) . '/#', '', $file );
	$file = trim( $file, '/' );
	return $file;
}