bradyvercher / gistpress

WordPress plugin to add Gist oEmbed and shortcode support with caching.
GNU General Public License v2.0
143 stars 28 forks source link

Filter transient duration #78

Open plugin-republic opened 4 years ago

plugin-republic commented 4 years ago

Added a couple of filters for transient duration. Many gists are not updated regularly, if at all, so a longer transient duration can be used.

Example usage:

function pr_transient_expires( $duration ) {
  return MONTH_IN_SECONDS; 
}
add_filter( 'gistpress_transient_expire', 'pr_transient_expires' );
add_filter( 'gistpress_transient_expire_fallback', 'pr_transient_expires' );