Home Features Download v18.5 Child theme GGitHub

Meta Title

By default, the website meta title will appear like this, inside header.php:

<?php set_document_title('title', ' / ', 'sitename', ' - ', 'description'); ?>

Usage:

To change the format of the title, you can use this hook:

add_filter('set_document_title_parts', function ($parts) {
  return ['title', ' - ', 'sitename', ' - ', 'description'];
});
🦁 Gridy