Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: xmlrpc_allow_anonymous_comments

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
1246
1247           $this->escape($args);
1248
1249           $blog_id     = (int) $args[0];
1250           $username     = $args[1];
1251           $password     = $args[2];
1252           $post          = $args[3];
1253           $content_struct = $args[4];
1254
1255           $allow_anon = apply_filters('xmlrpc_allow_anonymous_comments', false);
1256
1257           $user = $this->login($username, $password);
1258
1259           if ( !$user ) {
1260                $logged_in = false;
1261                if ( $allow_anon && get_option('comment_registration') )
1262                     return new IXR_Error( 403, __( 'You must be registered to comment' ) );
1263                else if ( !$allow_anon )
1264                     return $this->error;