Make WordPress Core

Ticket #27345: 27345.patch

File 27345.patch, 730 bytes (added by bravokeyl, 11 years ago)

Initial attempt to add class

  • class-wp-posts-list-table.php

     
    544544                $alternate = 'alternate' == $alternate ? '' : 'alternate';
    545545                $classes = $alternate . ' iedit author-' . ( get_current_user_id() == $post->post_author ? 'self' : 'other' );
    546546
     547                $args = array(
     548                                          'post_parent' => $post->ID ,
     549                                          'post_type'   => 'page'
     550                                         );
     551                $page_children = get_children($args);
     552                if(count($page_children)>0){
     553                        $classes .= ' page_has_children';
     554                }
     555
    547556                $lock_holder = wp_check_post_lock( $post->ID );
    548557                if ( $lock_holder ) {
    549558                        $classes .= ' wp-locked';