Hello,
We apologize for the inconvenience you’re experiencing with the Brands Archive Titles in Rank Math settings. It seems that the %parent_title% variable is not displaying as expected.
To address this issue, we recommend reaching out to the Rank Math support team by opening a support ticket at Rank Math Support. They will be able to provide you with more specific guidance based on your website’s configuration.
Thank you for bringing this concern to our attention, and we appreciate your understanding.
Kind regards,
Rank Math Support
Sources:
General Tab in Meta Box of Rank Math SEO Plugin
Rank Math General Settings
Advanced Tab in Rank Math SEO’s Meta Box
Rank Math ‘Titles and Meta’ Options and Settings
Also, if there is no parent there should not be an ‘example’, but it is shown.
Hi,
There is also a third issue related to the same thing. I saved brands title and description in Rankmath settings, then translated these into Finnish using WPML string translation, but Finnish brands still get English title and description assigned to them.
Brands title and description setting: https://ibb.co/R26jQZ2
Translation done: https://ibb.co/chp3QDg
English title and description is under Finnish brands: https://ibb.co/r3N3yJy (should be in Finnish what we translated in WPML)
Hello,
Thank you for contacting Rank Math support, and sorry for the unexpected delays and any inconvenience that might have been caused due to that.
Please note that the variable %parent_title%
is meant for actual posts, pages or CPTs, not for taxonomies or archives.
You may try this to get the parent title and see if that works for you:
add_action('rank_math/vars/register_extra_replacements', function () {
rank_math_register_var_replacement(
'parent_archive_title',
[
'name' => esc_html__('Parent Archive Title', 'rank-math'),
'description' => esc_html__('Parent Archive Title', 'rank-math'),
'variable' => 'parent_archive_title',
'example' => parent_archive_title_callback(),
],
'parent_archive_title_callback'
);
});
function parent_archive_title_callback() {
$term = get_queried_object();
$taxonomy = $term->taxonomy;
// Climb up the hierarchy until we reach a term with parent = '0'
while (isset($term->parent) && $term->parent != '0') {
$term_id = $term->parent;
$term = get_term($term_id, $taxonomy);
}
return $term->name;
}
You’ll have to use the variable %parent_archive_title%
.
You may refer to this guide on how to add filters to your website: https://rankmath.com/kb/wordpress-hooks-actions-filters/
As for the translation issue, please make sure Rank Math is working well with WPML, to do so, install the glue plugin from WPML that helps integrate SEO plugins (if not yet): https://wpml.org/compatibility/2021/04/wpml-seo-plugin-better-integration-with-seo-plugins/
Let us know how that goes. Looking forward to helping you.
Hi,
I will test the function the week.
In the mean time, we have WPML SEO plugin installed, but the issue is still there.
Best,
Raido
Hello,
Sure, let us know how this goes.
Regarding the WPML issue, the screenshot links you have shared seems already expired.
However, in this case, we might need to take a closer look at the settings. Please edit the first post on this ticket and include your WordPress & FTP logins in the designated Sensitive Data section.
Please do take a complete backup of your website before sharing the information with us.

It is completely secure and only our support staff has access to that section. If you want, you can use the below plugin to generate a temporary login URL to your website and share that with us instead:
https://wordpress.org/plugins/temporary-login-without-password/
You can use the above plugin in conjunction with the WP Security Audit Log to monitor what changes our staff might make on your website (if any):
https://wordpress.org/plugins/wp-security-audit-log/
We really look forward to helping you.
Hello,
Since we did not hear back from you for 15 days, we are assuming that you found the solution. We are closing this support ticket.
If you still need assistance or any other help, please feel free to open a new support ticket, and we will be more than happy to assist.
Thank you.