Add right_now_table_end action hook so plugins can add to the Right Now summary table. props Malaiac

git-svn-id: https://develop.svn.wordpress.org/trunk@9431 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2008-10-31 08:00:47 +00:00
parent 1f6c4a1655
commit c2debbb698
1 changed files with 3 additions and 1 deletions

View File

@ -245,7 +245,9 @@ function wp_dashboard_right_now() {
echo '<td class="b b-waiting">'.$num.'</td>';
echo '<td class="last t waiting">' . __ngettext( 'Awaiting Moderation', 'Awaiting Moderation', $num_comm['awaiting_moderation'] ) . '</td>';
echo "</tr>\n\t</table>\n\t</div>";
echo "</tr>";
do_action('right_now_table_end');
echo "\n\t</table>\n\t</div>";
echo "\n\t".'<div class="versions">';
$ct = current_theme_info();