Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: xmlrpc_prepare_comment

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1157
1158           /**
1159            * Filters XML-RPC-prepared data for the given comment.
1160            *
1161            * @since 3.4.0
1162            *
1163            * @param array      $_comment An array of prepared comment data.
1164            * @param WP_Comment $comment  Comment object.
1165            */
1166           return apply_filters( 'xmlrpc_prepare_comment', $_comment, $comment );
1167      }
1168
1169      /**
1170       * Prepares user data for return in an XML-RPC object.
1171       *
1172       * @param WP_User $user   The unprepared user object.
1173       * @param array   $fields The subset of user fields to return.
1174       * @return array The prepared user data.
1175       */