Support » Networking WordPress » remove an item in the admin

  • Because I have a community type multisite, I decided to have all comments in reverse order with the newest comments always up the top and oldest at bottom for all users.

    I Done this by:

    add_filter ('comments_array', 'reverse_comments');
    function reverse_comments( $comments ) {
        return array_reverse( $comments );
    }

    In the admin – settings – discussions I now have the following line that doesn’t do anything:

    Comments should be displayed with the [older] comments at the top of each page.

    How can I remove this line?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘remove an item in the admin’ is closed to new replies.