In WP 6.1.0, get_page_by_title() was changed to use WP_Query internally`. See core.trac.wordpress.org/ticket/36905. This means that reporting this function as not being cached is not true anymore.
Note that since WP 6.2.0, the function was reverted from using WP_Query but was deprecated in favour of using WP_Query directly. WordPress Coding Standards highlights this deprecation already.
In WP 6.1.0,
get_page_by_title()
was changed to useWP_Query
internally`. See core.trac.wordpress.org/ticket/36905. This means that reporting this function as not being cached is not true anymore.Note that since WP 6.2.0, the function was reverted from using
WP_Query
but was deprecated in favour of usingWP_Query
directly. WordPress Coding Standards highlights this deprecation already.See #801 and specifically this comment.