Basic Settings - makeitworkpress/waterfall GitHub Wiki
The basic settings page can be found in your Admin Dashboard, usually here: https://www.yourdomain.com/wp-admin/options.php?page=waterfall_options
Obviously, swap yourdomain.com for the domain you are using.
Available Options
In the options screen you can find the following options:
- Changing the main micro scheme for your website, either person or organization.
- A field for adding your google analytics tracking code.
- Synchronizing settings over a multisite network
- Basic optimizations for WordPress and Lazy Loading.
Retrieving Options
If you are developing and need to access the array of options, they can be accessed in the following way:
$options = get_option('waterfall_options');
Extending Options
The options screen is generated with the WP Custom Fields Script, for which you can find more details here. You can find more information on how to extend configurations on the Extending Configurations Wiki Page.