David Biňovec
David Biňovec
@mattoperry : https://github.com/Automattic/lightweight-term-count-update/issues/6
Looking into this, I have found out that the `wp_defer_term_counting` is being used in [`wp_nav_menu_update_menu_items`](https://developer.wordpress.org/reference/functions/wp_nav_menu_update_menu_items/) I'm going to dig into it and figure out what are the consequences of this....
Thanks! Closing in favor of #39091
This was meant to flag cases as follows: ```
> Is it all query string parameter values that should be run through rawurlencode? Or just ones that might contain [^A-Za-z0-9]? From the VIP code review point of view, there...
Sorry for being late here, and sorry for not being clear. The problem with the code above is following: ``` $post_id = get_query_var( 'post_id', null ); // Reads the `post_id`...
Yeah, this one is a bit tricky to implement. ``` function my_theme_get_posts() { $posts = wp_cache_get( 'mykey', 'mygroup' ) if ( false !== $posts ) { return $posts; } $expensive_query...