-
Notifications
You must be signed in to change notification settings - Fork 116
Action Reference
fjarrett edited this page Sep 8, 2014
·
10 revisions
Fires just before the Stream list table is registered.
void
Since: 1.4.0
Source file: classes/class-wp-stream-admin.php
do_action( 'wp_stream_admin_menu_screens' );
Fires after all connectors have been registered.
void
$connectors
(array) - An array of connector slug/label pairs.
Since: 1.3.0
Source file: classes/class-wp-stream-connectors.php
do_action( 'wp_stream_after_connectors_registration', $connectors );
Fires after the list table is displayed.
void
Since: 1.0.0
Source file: classes/class-wp-stream-list-table.php
do_action( 'wp_stream_after_list_table' );
Allows for the addition of content under a specified column.
void
$item
(object) - Contents of the row
Since: 1.0.0
Source file: classes/class-wp-stream-list-table.php
do_action( "wp_stream_insert_column_default-{$column_title}", $item );