-
When loading the archive or posts for our Podcast post type the page loads super slow, with Query Monitor saying that Database queries are taking from 9 to 11+ seconds, whereas disabling RankMath reduces those numbers to almost nothing. As an example, there is a DB query taking 2+ seconds (and 5 more like it averaging 1.5+ seconds):
SELECT post_id, meta_key, meta_value
FROM wp_postmeta
WHERE post_id IN (4528)
ORDER BY meta_id ASC /* From [site.com/podcast_episodes/] in [site/wp-content/plugins/feedzy-rss-feeds-pro/includes/public/feedzy-rss-feeds-pro-public.php:103] */
The line 103 in question is:
$link_author_public = get_post_meta( $job_id, 'import_link_author_public', true );
However Query Monitor shows RankMath to be in the calling chain making this code run:
update_meta_cache
get_metadata_raw
get_metadata
get_post_meta
Feedzy_Rss_Feeds_Pro_Public->the_author
apply_filters('get_the_author_display_name')
get_the_author_meta
RankMath\Replace_Variables\Author_Variables->setup_author_variables
RankMath\Replace_Variables\Manager->setup
do_action_ref_array('wp')
WP->main
wp
require('wp-blog-header.php')
Is there a way to disable getting the author meta for a post type in Rank Math, or another way to resolve this issue?
The ticket ‘Super slow page load in combination with Feedzy Premium’ is closed to new replies.