wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



plugin_dir_url › WordPress Function

Seit2.8.0
Veraltetn/v
plugin_dir_url ( $file )
Parameter:
  • (string) $file The filename of the plugin (__FILE__).
    Erforderlich: Ja
Gibt zurück:
  • (string) the URL path of the directory that contains the plugin.
Definiert in:
Codex:

Get the URL directory path (with trailing slash) for the plugin __FILE__ passed in.



Quellcode

function plugin_dir_url( $file ) {
	return trailingslashit( plugins_url( '', $file ) );
}