-
Notifications
You must be signed in to change notification settings - Fork 116
Filter Reference
fjarrett edited this page Sep 4, 2014
·
28 revisions
Allows excluded connectors to be overridden and registered.
apply_filters( 'wp_stream_check_connector_is_excluded', $is_excluded, $connector, $excluded_connectors );
Return: void
Since: 1.3.0
Source file: classes/class-wp-stream-connectors.php
$is_excluded
(bool) - True if excluded, otherwise false.
$connector
(string) - The current connector's slug.
$excluded_connectors
(array) - An array of all excluded connector slugs.
Allows for adding additional connectors via classes that extend WP_Stream_Connector
.
apply_filters( 'wp_stream_connectors', $classes );
Return: void
Since: 0.2.0
Source file: classes/class-wp-stream-connectors.php
$classes
(array) - An array of connector class names.
Allows modification of record information just before logging occurs.
apply_filters( 'wp_stream_record_array', $records );
Return: void
Since: 0.2.0
Source file: classes/class-wp-stream-db.php
$records
(array) - An array of record data.