ActionScheduler::plugin_url
Get the absolute URL to the plugin directory, or a file therein
Method of the class: ActionScheduler{}
No Hooks.
Returns
String.
Usage
$result = ActionScheduler::plugin_url( $path );
- $path(string) (required)
- Path relative to plugin directory.
ActionScheduler::plugin_url() ActionScheduler::plugin url code WC 10.3.6
public static function plugin_url( $path ) {
return plugins_url( $path, self::$plugin_file );
}