@kappe Hi, I just believe this can be a solution for this. I don't know is it good for site, or is it safe but it works for me, so I want to share.
I just add this code to, Appearance | Theme Editor | Theme Functions (functions.php) files. I am just an amateur but I think this works for me. I just change the Page Names, Keywords and Descriptions.
function add_meta_data_firefog() {
if ( is_page('Page-Name-One') ) {
echo'<meta name="Keywords" content="Keyword One, Keywords Two">';
echo'<meta name="Description" content="Page Descriptions.">';
}
if ( is_page('Page-Name-Two') ) {
echo'<meta name="Keywords" content="Keyword One, Keywords Two">';
echo'<meta name="Description" content="Page Descriptions.">';
}
if ( is_page('Page-Name-Three') ) {
echo'<meta name="Keywords" content="Keyword One, Keywords Two">';
echo'<meta name="Description" content="Page Descriptions.">';
}
}
add_action('wp_head', 'add_meta_data_firefog');