ActionScheduler::plugin_url()public staticWC 1.0

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

Метод класса: ActionScheduler{}

Хуков нет.

Возвращает

Строку.

Использование

$result = ActionScheduler::plugin_url( $path );
$path(строка) (обязательный)
-

Код ActionScheduler::plugin_url() WC 8.7.0

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