Feature Request | Add SpeedVitals and WebPageTest to External Tools
-
Good Day,
We enjoy using your plugin and its features — especially the External Tools feature.
Based on the above, can you guys kindly add the following website performance checkers to your plugin’s External Tools feature?
Speedvitals (TTFB Test)
WebPage Test (Waterfall Test)Until then, we developed the code snippet provided below for the same purpose.
Thank you!
————
function add_submenu_links ($wp_admin_bar) {
if ( ! is_admin() ) {
$wp_admin_bar->add_node( array(
'parent' => 'rank-math-third-party',
'id' => 'speedvitals',
'title' => 'SpeedVitals',
'href' => 'https://speedvitals.com/ttfb-test',
'meta' => false
));
$wp_admin_bar->add_node( array(
'parent' => 'rank-math-third-party',
'id' => 'webpagetest',
'title' => 'WebPageTest',
'href' => 'https://www.webpagetest.org/',
'meta' => false
));
}
}
add_action( 'admin_bar_menu', 'add_submenu_links',999 );
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.