|
@@ 714-723 (lines=10) @@
|
| 711 |
|
$status[ $row['post_status'] ] = $row['post_count']; |
| 712 |
|
} |
| 713 |
|
|
| 714 |
|
if ( isset( $status['publish'] ) ) { |
| 715 |
|
$status_html .= '<li><a href="edit.php?post_type=feedback"'; |
| 716 |
|
if ( $current_menu == 'messages' ) { |
| 717 |
|
$status_html .= ' class="current"'; |
| 718 |
|
} |
| 719 |
|
|
| 720 |
|
$status_html .= '>' . __( 'Messages', 'jetpack' ) . ' <span class="count">'; |
| 721 |
|
$status_html .= '(' . number_format( $status['publish'] ) . ')'; |
| 722 |
|
$status_html .= '</span></a> |</li>'; |
| 723 |
|
} |
| 724 |
|
|
| 725 |
|
if ( isset( $status['trash'] ) ) { |
| 726 |
|
$status_html .= '<li><a href="edit.php?post_status=trash&post_type=feedback"'; |
|
@@ 740-748 (lines=9) @@
|
| 737 |
|
$status_html .= '</li>'; |
| 738 |
|
} |
| 739 |
|
|
| 740 |
|
if ( isset( $status['spam'] ) ) { |
| 741 |
|
$status_html .= '<li><a href="edit.php?post_status=spam&post_type=feedback"'; |
| 742 |
|
if ( $current_menu == 'spam' ) { |
| 743 |
|
$status_html .= ' class="current"'; |
| 744 |
|
} |
| 745 |
|
|
| 746 |
|
$status_html .= '>' . __( 'Spam', 'jetpack' ) . ' <span class="count">'; |
| 747 |
|
$status_html .= '(' . number_format( $status['spam'] ) . ')'; |
| 748 |
|
$status_html .= '</span></a></li>'; |
| 749 |
|
} |
| 750 |
|
|
| 751 |
|
echo $status_html; |