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
2841      if ( ! isset($pinged) )
2842           $pinged = '';
2843
2844      if ( isset($post_parent) )
2845           $post_parent = (int) $post_parent;
2846      else
2847           $post_parent = 0;
2848
2849      // Check the post_parent to see if it will cause a hierarchy loop
2850      $post_parent = apply_filters( 'wp_insert_post_parent', $post_parent, $post_ID, compact( array_keys( $postarr ) ), $postarr );
2851
2852      if ( isset($menu_order) )
2853           $menu_order = (int) $menu_order;
2854      else
2855           $menu_order = 0;
2856
2857      if ( !isset($post_password) || 'private' == $post_status )
2858           $post_password = '';
2859