• Do you know a plugin to show recently-comments posts in the Dashboard?

    I know it’s very easy to show recent comments publicly, but rather than clutter up my blog with a long list of those, I’d like a way to view *just* post titles, sorted in reverse-chronological order. Sort of like an alternate view for how recent comments are currently sorted behind-the-scenes — List View comes close but still shows extracts of comments, so more noise than I’d are for. Thanks in advance. ??

Viewing 1 replies (of 1 total)
  • edit function wp_dashboard_recent_comments() on line 257 in /wp-admin/includes/dashboard.php

    I don’t know how you want it to be like, but you can edit these two lines.

    $lambda = create_function( '', 'return 5;' ); – number of recent comments to be shown

    $comment_meta = sprintf( __( 'From <strong>%1$s</strong> on %2$s %3$s' ), get_comment_author(), $comment_post_link, $comment_link ); – how it will display on the dashboard

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin to show recently-commented posts in Dashboard?’ is closed to new replies.