Making WordPress.org


Ignore:
Timestamp:
01/20/2021 05:31:04 AM (6 years ago)
Author:
dd32
Message:

Support: Add a 'All Replies' moderator view to see an overview all of current forum activity.

https://wordpress.org/support/view/all-replies/ compliments https://wordpress.org/support/view/all-topics/ however it doesn't exclude plugin/theme/review replies.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/support-forums/inc/class-moderators.php

    r7482 r10604  
    116116                                ),
    117117                                'post_status'   => 'archived',
     118                                'show_stickies' => false,
     119                                'orderby'       => 'ID',
     120                        )
     121                );
     122
     123                bbp_register_view(
     124                        'all-replies',
     125                        __( 'All Replies', 'wporg-forums' ),
     126                        array(
     127                                'meta_key'      => null,
     128                                'post_type'     => 'reply',
     129                                'post_status'   => array(
     130                                        'spam',
     131                                        'pending',
     132                                        'publish'
     133                                ),
    118134                                'show_stickies' => false,
    119135                                'orderby'       => 'ID',
Note: See TracChangeset for help on using the changeset viewer.