Tag: Transient API

Easy Transient integration for WP Query

What is Transient API? The Transients API is very similar to the Options API but with the added feature of an expiration time, which simplifies the process of using the wp_options database table to temporarily store cached information. Reference: https://codex.wordpress.org/Transients_API Function Add this yo your functions.php // wp query transient function wp_query_transient($transient_key, $args){ $query = […]

Read more