Make WordPress Core


Ignore:
Timestamp:
12/08/2010 09:17:01 PM (14 years ago)
Author:
markjaquith
Message:

Use is_page_type_hierarchical(). props nacin. see #15140

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/query.php

    r16818 r16819  
    32333233
    32343234        // Do not attempt redirect for hierarchical post types
    3235         $ptype_obj = get_post_type_object( $post_type );
    3236         if ( !$ptype_obj || $ptype_obj->hierarchical )
     3235        if ( is_post_type_hierarchical( $post_type ) )
    32373236            return;
    32383237
Note: See TracChangeset for help on using the changeset viewer.