aioseo_last_modified_date_disable

aioseo_last_modified_date_disable

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.4.8.1.1

apply_filters('aioseo_last_modified_date_disable') is found 1 times:

  • /app/Common/Standalone/LimitModifiedDate.php line 25
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    *
     * @return void
     */
    public function __construct() {
        if ( apply_filters( 'aioseo_last_modified_date_disable', false ) ) {
            return;
        }
     
        // Reset modified date when the post is updated.
        add_filter( 'wp_insert_post_data', [ $this, 'resetModifiedDate' ], 99999, 2 );
        add_filter( 'wp_insert_attachment_data', [ $this, 'resetModifiedDate' ], 99999, 2 );