Loading time
-
Hello, I want to notice that the plugin slowdown my admin website. With Query Monitor it say that before page load in 1.5s and after the activation it took more than 50s to load the same page.
I removed theses lines from your plugin and now it works great:
add_filter( ‘the_title’, ‘do_shortcode’ );
add_filter( ‘single_post_title’, ‘do_shortcode’ );
add_filter(‘the_excerpt’, ‘do_shortcode’);
add_filter( ‘rank_math/frontend/title’, function( $title ) {
return do_shortcode( $title );
});
add_filter( ‘rank_math/paper/auto_generated_description/apply_shortcode’, ‘__return_true’ );
add_filter( ‘rank_math/frontend/breadcrumb/html’, ‘do_shortcode’ );
// add_filter( ‘rank_math/snippet/breadcrumb’, ‘do_shortcode’ ); @todo
- The topic ‘Loading time’ is closed to new replies.