Definition:
function plugin_dir_url( $file ) {}
Gets the URL directory path (with trailing slash) for the plugin __FILE__ passed in
Parameters
- string $file: The filename of the plugin (__FILE__)
Return values
returns:the URL path of the directory that contains the plugin
Source code
function plugin_dir_url( $file ) { return trailingslashit( plugins_url( '', $file ) ); }
2519
No comments yet... Be the first to leave a reply!