if ( ! empty( $this->sticky_posts_count ) ) {
$class = ! empty( $_REQUEST['show_sticky'] ) ? ' class="current"' : '';

$sticky_link = array( 'sticky' => "<a href='edit.php?post_type=$post_type&amp;show_sticky=1'$class>" . sprintf( _nx( 'Sticky <span class="count">(%s)</span>', 'Sticky <span class="count">(%s)</span>', $this->sticky_posts_count, 'posts' ), number_format_i18n( $this->sticky_posts_count ) ) . '</a>' );

// Sticky comes after Publish, or if not listed, after All.
$split = 1 + array_search( ( isset( $status_links['publish'] ) ? 'publish' : 'all' ), array_keys( $status_links ) );
$status_links = array_merge( array_slice( $status_links, 0, $split ), $sticky_link, array_slice( $status_links, $split ) );
}
//兼职编辑标签
if(current_user_can('administrator')){
if(!empty($this->parttime_posts_count)){
if ( !empty($_REQUEST['show_parttime'])){
$mid_class = ' class="current"';
}
$parttime_link = array('parttime' => "<a href='edit.php?post_type=$post_type&amp;show_parttime=1'$mid_class>" . sprintf( _nx( 'parttime <span class="count">(%s)</span>', '兼职编辑 <span class="count">(%s)</span>', $this->parttime_posts_count, 'posts' ), number_format_i18n( $this->parttime_posts_count ) ) . '</a>');
$status_links = array_merge($status_links,$parttime_lin
源链接

Hacking more

...