Title: Only Administrator
Last modified: January 25, 2017

---

# Only Administrator

 *  Resolved [aggk](https://wordpress.org/support/users/aggk/)
 * (@aggk)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/only-administrator/)
 * Hi,
 * Is it possible to show the log info only for Administrator role?
 * Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Pär Thernström](https://wordpress.org/support/users/eskapism/)
 * (@eskapism)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/only-administrator/#post-8700393)
 * Yes,
 * a snippet like this in your functions.php-file should do it:
 *     ```
       /**
        * Change capability required to view main simple history page.
        * Default capability is "edit_pages". Change to for example "manage options"
        * to only allow admins to view the history log.
        */
       add_filter("simple_history/view_history_capability", function($capability) {
           $capability = "manage_options";
           return $capability;
       });
       ```
   
 * Check out the examples file here for more examples on what you can do:
 * [https://github.com/bonny/WordPress-Simple-History/blob/master/examples/examples.php](https://github.com/bonny/WordPress-Simple-History/blob/master/examples/examples.php)
 *  Thread Starter [aggk](https://wordpress.org/support/users/aggk/)
 * (@aggk)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/only-administrator/#post-8713714)
 * Thank you, that worked perfectly!
 * Does this plugin add anything that could slow down load time of the front end
   site ?
 *  Plugin Author [Pär Thernström](https://wordpress.org/support/users/eskapism/)
 * (@eskapism)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/only-administrator/#post-8719796)
 * Nothing that I know of or have noticed myself. As with all plugins, it must load
   some files, but it does not query database or such on the front end.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Only Administrator’ is closed to new replies.

 * ![](https://ps.w.org/simple-history/assets/icon.svg?rev=3225008)
 * [Simple History – Track, Log, and Audit WordPress Changes](https://wordpress.org/plugins/simple-history/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/simple-history/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/simple-history/)
 * [Active Topics](https://wordpress.org/support/plugin/simple-history/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/simple-history/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/simple-history/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Pär Thernström](https://wordpress.org/support/users/eskapism/)
 * Last activity: [9 years, 3 months ago](https://wordpress.org/support/topic/only-administrator/#post-8719796)
 * Status: resolved