?
Current Path : /home1/savoy/sportsmeet.net/wp-content/plugins/wp-plugin-hostgator/inc/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/sportsmeet.net/wp-content/plugins/wp-plugin-hostgator/inc/settings.php |
<?php /** * Functionality related to Settings * see RestApi/SettingsController.php for implementation * * @package HostGatorWordPressPlugin */ namespace HostGator; /** * Filter wp revisions according to plugin setting * * @param int $num Number of posts to retain (unused). * @param WP_Post|object $post Post object (unused). * @return int */ function nfd_settings_revisions( $num, $post ) { return get_option( 'nfd_wp_post_revisions', 5 ); } add_filter( 'wp_revisions_to_keep', __NAMESPACE__ . '\\nfd_settings_revisions', 10, 2 ); if ( ! defined( 'EMPTY_TRASH_DAYS' ) ) { $nfd_empty_trash_days = get_option( 'nfd_empty_trash_days', 30 ); define( 'EMPTY_TRASH_DAYS', $nfd_empty_trash_days ); }