What Configuration Really Meanconfiguration mean the site options, features and settings (some thing like news limit in your home page, Enable or disable some features).
How it works?- loading the configuration information from a mysql table
- convert options to an array like: array( 'option_name' => option_value )
how i can use it?- get the options array$options = get_options();
this will return an array like array('news' => 0,'news_limit' => 15,......)
- to use an option use $options['option_name']
the Tutorial (http://www.jooria.com/Tutorials/tricks-19/best-way-to-set-your-website-configuration-160/index.html)