Title: Only page posts changes
Last modified: June 3, 2020

---

# Only page posts changes

 *  Resolved [Damiaan van Vliet](https://wordpress.org/support/users/damnsharp/)
 * (@damnsharp)
 * [6 years ago](https://wordpress.org/support/topic/only-page-posts-changes/)
 * Good morning, thanks for developing this nice easy to use plug-in but I am wondering
   if it is possible to have a RSS feed from only the page / posts changes made 
   by someone.
    That would be fantastic.
 * Thanks!

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

 *  [nehagrover027](https://wordpress.org/support/users/nehagrover027/)
 * (@nehagrover027)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/only-page-posts-changes/#post-12993081)
 * Hi Damiaan,
 *  You can add a custom filter function like this:
 *     ```
       add_filter('simple_history/simple_logger/log_message_key', function ($doLog, $loggerSlug, $messageKey, $SimpleLoggerLogLevelsLevel, $context) {
   
       	$test_array = array("SimplePostLogger", "SimpleCategoriesLogger", "SimpleMenuLogger");
       	if(!in_array($loggerSlug, $test_array)){
       		$doLog = false;
       	}
   
           return $doLog;
       }, 10, 5);
       ```
   
 * Please note that the test array contains functions you need to log. You can get
   these functions from Simple History settings page, “Debug” tab.
 * Hope that helps.!
 *  Thread Starter [Damiaan van Vliet](https://wordpress.org/support/users/damnsharp/)
 * (@damnsharp)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/only-page-posts-changes/#post-12993132)
 * Thanks [@nehagrover027](https://wordpress.org/support/users/nehagrover027/) for
   your help! I will try this 🙂
    -  This reply was modified 5 years, 11 months ago by [Damiaan van Vliet](https://wordpress.org/support/users/damnsharp/).

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

The topic ‘Only page posts changes’ 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/)

 * 2 replies
 * 2 participants
 * Last reply from: [Damiaan van Vliet](https://wordpress.org/support/users/damnsharp/)
 * Last activity: [5 years, 11 months ago](https://wordpress.org/support/topic/only-page-posts-changes/#post-12993132)
 * Status: resolved