Skip to content

Basic Settings

Michiel Tramper edited this page Jul 12, 2019 · 1 revision

The basic settings page can be found in your Admin Dashboard, usually here: https://www.yourdomain.com/wp-admin/options.php?page=velocity_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.
  • Basic optimizations for WordPress and Lazy Loading.
  • An advertisement manager to add scripts for custom adverts, which can be dynamically inserted into the code.

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('velocity_options');

Adding new customizer fields

As a developer, you can also manually add new option fields and pages using the 'velocity_configurations' WordPress filter. More information can be found on the Filter and Action Hooks Wiki page.

Clone this wiki locally