plugin_dir_path

Definition:
function plugin_dir_path( $file ) {}

Gets the filesystem directory path (with trailing slash) for the plugin __FILE__ passed in

Parameters

  • string $file: The filename of the plugin (__FILE__)

Return values

returns:the filesystem path of the directory that contains the plugin

Source code

function plugin_dir_path( $file ) {

	return trailingslashit( dirname( $file ) );

}

2517

No comments yet... Be the first to leave a reply!

Leave a comment