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.
Filter the NodeInfo data.
/** * Filter the NodeInfo data. * * @param array $nodeinfo * @param string $version * @return array The filtered value. */ function my_nodeinfo_data_callback( array $nodeinfo, string $version ) { // Your code here. return $nodeinfo; } add_filter( 'nodeinfo_data', 'my_nodeinfo_data_callback', 10, 2 );
array
$nodeinfo
string
$version
\apply_filters( 'nodeinfo_data', $nodeinfo, $version )
← All Hooks