J
J
JyriG2020-02-22 22:12:02
JavaScript
JyriG, 2020-02-22 22:12:02

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

2 answer(s)
0
0xD34F, 2019-06-28
@darktowerk56c

Recursion:

function walk(node) {
  if (node) {
    console.log(node);
    walk(node.next);
  }
}

Or a loop:
function walk(node) {
  while (node) {
    console.log(node);
    node = node.next;
  }
}

A
approximate solution, 2020-02-22
@approximate_solution

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 question

Ask a Question

731 491 924 answers to any question