helpful_admin_feedback_item
Help: If you do not know how to execute or save your own PHP code, you can find help here: How to execute PHP code on your WordPress website
This is packed into the array for a feedback item in the backend. The output is not taken into account, but for example a process can be attached that is only executed if feed.
/**
* Change the default output feedback item.
*
* @param array $item item array with fields, message and more.
* @return array
*/
function custom_function( $item ) {
return $item;
}
add_filter( 'helpful_admin_feedback_item', 'custom_function' );