外掛說明
The plugin provides a globally accessible container for storing values of any kind. The Registry is a singleton and you can set values inside the registry like this:
WP_Registry::set( 'key', $value )
which can then be retrieved at any time like this:
WP_Registry::get( 'key' ) 安裝方式
- Upload
wp_registry.phpto the/wp-content/plugins/directory - Activate the plugin through the ‘Plugins’ menu in WordPress
常見問題集
Which version of PHP is required?
This is a PHP 5+ plugin only. Internally it uses the SPL ArrayObject for data storage. Making PHP5 a requirement.
使用者評論
這個外掛目前沒有任何使用者評論。
參與者及開發者
變更記錄
0.2
- Tested with WordPress 2.9, plugin is compatible
0.1
- Initial plugin release