An open API service indexing awesome lists of open source software.

https://github.com/itcig/wp-caliban

Caliban plugin for Wordpress
https://github.com/itcig/wp-caliban

wordpress wordpress-plugin wrapper

Last synced: 2 months ago
JSON representation

Caliban plugin for Wordpress

Awesome Lists containing this project

README

          

# Caliban WP Plugin

Set custom JS tracker properties using WP filters as long as these are called before the `wp_head` action is called.

### Examples:

**User Id**

```
Caliban\WP\ClientTracker::set('setUserId', 1357);
```

**Free-form key/value data**

```
Caliban\WP\ClientTracker::set('setSessionExtraData', ['a' => 1, 'b' => 'c']);
```