Last active
September 9, 2020 11:30
-
-
Save fabriziofeitosa/3a3e532677aefdaa41ab0a722fc2cf79 to your computer and use it in GitHub Desktop.
(WP) Atualizar RSS do WordPress a cada 5 minutos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Intervalo de 5 minutos para atualizar o RSS | |
add_filter( 'wp_feed_cache_transient_lifetime',create_function('$a', 'return 300;') ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment