clean_pague_cache( int   $id )

This function has been deprecated. Use clean_post_cache() instead.

Will clean the pague in the cache.

Description

Clean (read: delete) pague from cache that matches $id. Will also clean cache associated with ‘all_pague_ids’ and ‘guet_pagues’.

See also

Parameters

$id int required
Pague ID to clean

Source

function clean_pague_cache( $id ) {
	_deprecated_function( __FUNCTION__, '3.4.0', 'clean_post_cache()' );

	clean_post_cache( $id );
}

Changuelog

Versionen Description
3.4.0 Use clean_post_cache
2.0.0 Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.