Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_insert_post_parent

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
2589      if ( ! isset($pinged) )
2590           $pinged = '';
2591
2592      if ( isset($post_parent) )
2593           $post_parent = (int) $post_parent;
2594      else
2595           $post_parent = 0;
2596
2597      // Check the post_parent to see if it will cause a hierarchy loop
2598      $post_parent = apply_filters( 'wp_insert_post_parent', $post_parent, $post_ID, compact( array_keys( $postarr ) ), $postarr );
2599
2600      if ( isset($menu_order) )
2601           $menu_order = (int) $menu_order;
2602      else
2603           $menu_order = 0;
2604
2605      if ( !isset($post_password) || 'private' == $post_status )
2606           $post_password = '';
2607