Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: xmlrpc_prepare_post

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
686                $enclosures = (array) get_post_meta( $post['ID'], 'enclosure' );
687                if ( ! empty( $enclosures ) ) {
688                     $encdata = explode( "\n", $enclosures[0] );
689                     $_post['enclosure']['url'] = trim( htmlspecialchars( $encdata[0] ) );
690                     $_post['enclosure']['length'] = (int) trim( $encdata[1] );
691                     $_post['enclosure']['type'] = trim( $encdata[2] );
692                }
693           }
694
695           return apply_filters( 'xmlrpc_prepare_post', $_post, $post, $fields );
696      }
697
698      /**
699       * Prepares post data for return in an XML-RPC object.
700       *
701       * @access protected
702       *
703       * @param object $post_type Post type object
704       * @param array $fields The subset of post fields to return