How to enable changelog for any post types ?
you can enable changelog for any post type from settings.
you can enable changelog for any post type from settings.
You can add your own log type fype by filter hooks as following. function awesome_changelog_logs_type_extra($logs_type){ $logs_type[‘revision’] = array( ‘title’=>’Revision’, ‘css’=>’background:#43F2FF;’, ); return $logs_type; } add_filter(‘awesome_changelog_logs_type’,’awesome_changelog_logs_type_extra’); it will display under log type select list.