Make WordPress Core


Ignore:
Timestamp:
12/05/2014 03:27:02 AM (10 years ago)
Author:
DrewAPicture
Message:

Add missing documentation for the xmlrpc_element_limit hook in wp-includes/class-IXR.php.

Props ankitgadertcampcom, kpdesign.
Fixes #29977.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-IXR.php

    r30201 r30744  
    229229        $element_limit = 30000;
    230230        if ( function_exists( 'apply_filters' ) ) {
     231            /**
     232             * Filter the number of elements to parse in an XML-RPC response.
     233             *
     234             * @since 4.0.0
     235             *
     236             * @param int $element_limit Default elements limit.
     237             */
    231238            $element_limit = apply_filters( 'xmlrpc_element_limit', $element_limit );
    232239        }
Note: See TracChangeset for help on using the changeset viewer.