dsawardekar/wp-asset-manager

WordPress中脚本和样式表管理的面向对象方法

dev-develop 2014-07-27 07:33 UTC

This package is not auto-updated.

Last update: 2024-09-14 15:47:37 UTC


README

WordPress中资产管理面向对象方法。

已弃用。此仓库已合并到 Arrow

用法

$container->factory('script', 'WpAssetManager\Script');
$container->factory('scriptLoader', 'WpAssetManager\ScriptLoader');

$scriptLoader = $container->lookup('scriptLoader');
$scriptLoader->schedule('my-script-slug');
$scriptLoader->load();