ActionScheduler::plugin_url()public staticWC 1.0

Get the absolute URL to the plugin directory, or a file therein

Method of the class: ActionScheduler{}

No Hooks.

Return

String.

Usage

$result = ActionScheduler::plugin_url( $path );
$path(string) (required)
-

ActionScheduler::plugin_url() code WC 8.6.1

public static function plugin_url( $path ) {
	return plugins_url($path, self::$plugin_file);
}