diff --git a/wp-admin/includes/class-wp-posts-list-table.php b/wp-admin/includes/class-wp-posts-list-table.php index 542e533abb..47a8aeba0e 100644 --- a/wp-admin/includes/class-wp-posts-list-table.php +++ b/wp-admin/includes/class-wp-posts-list-table.php @@ -653,9 +653,9 @@ class WP_Posts_List_Table extends WP_List_Table { ?> >ID ) ) - echo get_post_format_string( get_post_format( $post->ID ) ); + printf( '%s', add_query_arg( array( 'post_format' => get_post_format( $post->ID ), 'post_type' => $post->post_type ), 'edit.php' ), get_post_format_string( get_post_format( $post->ID ) ) ); else - echo get_post_format_string( 'standard' ); + echo '—'; ?>