Advertisement
pratikshrestha

BBpress Flush Transients

Mar 23rd, 2016
1,159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. /**
  2.  * Flush out bbpress dropdown of forum list transient on save/update of forum posts
  3.  *
  4.  * @hooked save_post
  5.  */
  6. function prefix_flush_posts_transients() {
  7.     delete_transient( 'prefix_bbpress_dropdown_forum_list' );
  8. }
  9. add_action( 'save_post', 'prefix_flush_posts_transients' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement