Answer the question
In order to leave comments, you need to log in
Is the title tag duplicated on a WordPress site?
Hey!
The Title code is duplicated in the header of the emine.fi website. One generates wordpress, the second generates Yoanst SEO premium.
How to fix it?
Answer the question
In order to leave comments, you need to log in
Recursion:
function walk(node) {
if (node) {
console.log(node);
walk(node.next);
}
}
function walk(node) {
while (node) {
console.log(node);
node = node.next;
}
}
In the header.php template remove your title / remove the title generation in the plugin.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question