Skip to content

A module to determine context for various brands and platforms.

License

Notifications You must be signed in to change notification settings

newfold-labs/wp-module-context

wp-module-context

A module to determine context for various brands and platforms.

Integration

Hook into the newfold/context/set action to set context from another module or plugin.

An example setting a brand with sub brand and region included.

add_action(
    'newfold/context/set',
    function () {
 		setContext( 'brand.name', 'hostgator' );
 		setContext( 'brand.sub', 'latam' );
 		setContext( 'brand.region', 'BR' );
	}
);