![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/www/wp-content/plugins/wp-rocket/inc/front/ |
<?php defined( 'ABSPATH' ) || exit; /** * By default, the lifetime of the cookie comment is one year. * Life is reduced to 3 minutes so that the visitor can enjoy the cached site. * * @since 1.0 */ function rocket_comment_cookie_lifetime() { /** * Filter the lifetime of the cookie comment * * @since 2.2 * * @param int The lifetime of the cookie in seconds */ $cookie_lifetime = apply_filters( 'rocket_comment_cookie_lifetime', 3 * MINUTE_IN_SECONDS ); return $cookie_lifetime; } add_filter( 'comment_cookie_lifetime', 'rocket_comment_cookie_lifetime' );