We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/** * Callback function for the 'nodeinfo2_data' filter. * * @param array $string_list * @return array The filtered value. */ function my_nodeinfo2_data_callback( array $string_list ) { // Your code here. return $string_list; } add_filter( 'nodeinfo2_data', 'my_nodeinfo2_data_callback' );
array
$string_list
apply_filters( 'nodeinfo2_data', array( 'protocols' => array() ) )
← All Hooks