ActionScheduler::plugin_url
Get the absolute URL to the plugin directory, or a file therein
Метод класса: ActionScheduler{}
Хуков нет.
Возвращает
Строку.
Использование
$result = ActionScheduler::plugin_url( $path );
- $path(строка) (обязательный)
- Path relative to plugin directory.
Код ActionScheduler::plugin_url() ActionScheduler::plugin url WC 10.3.4
public static function plugin_url( $path ) {
return plugins_url( $path, self::$plugin_file );
}