Make WordPress Core

Ticket #15784: 15784.2.patch

File 15784.2.patch, 1.2 KB (added by dllh, 13 years ago)

slightly modified approach

  • wp-admin/includes/class-wp-posts-list-table.php

     
    605605                                        $out = array();
    606606                                        foreach ( $categories as $c ) {
    607607                                                $out[] = sprintf( '<a href="%s">%s</a>',
    608                                                         esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'category_name' => $c->slug ), 'edit.php' ) ),
     608                                                        esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'category_name' => $c->slug, 'post_status' => 'all' ), 'edit.php' ) ),
    609609                                                        esc_html( sanitize_term_field( 'name', $c->name, $c->term_id, 'category', 'display' ) )
    610610                                                );
    611611                                        }
     
    626626                                        $out = array();
    627627                                        foreach ( $tags as $c ) {
    628628                                                $out[] = sprintf( '<a href="%s">%s</a>',
    629                                                         esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'tag' => $c->slug ), 'edit.php' ) ),
     629                                                        esc_url( add_query_arg( array( 'post_type' => $post->post_type, 'tag' => $c->slug, 'post_status' => 'all' ), 'edit.php' ) ),
    630630                                                        esc_html( sanitize_term_field( 'name', $c->name, $c->term_id, 'tag', 'display' ) )
    631631                                                );
    632632                                        }