Y
Y
Yana2017-07-27 20:07:50
JavaScript
Yana, 2017-07-27 20:07:50

Yoast Seo - internal links, link to your own blog articles?

I read an article about cornerstone content and links ..
it turns out that I should link from one of my articles to another on the same topic? there is no specific algorithm?

Answer the question

In order to leave comments, you need to log in

6 answer(s)
U
Urukhayy, 2019-02-23
@megamage

var a = [1,2,3,4,5,6] // example
console.log(makeIt(a, 2)) // show result


function makeIt(array, index) {
  var edited = array.slice()
  return edited.splice(index).concat(edited)
}

Y
Yuri Esin, 2019-02-24
@Exomode

function sort(array, index) {
    if (!array || !array.length) {
        return [];
    }

    var result = [];
    var i = index;
    var j = 0;

    while (result.length < array.length) {
        if (i == array.length) {
            i = 0;
        }

        result[j++] = array[i++];
    }

    return result;
}

var a = [1,2,3,4,5,6];
console.log(sort(a, 2));

A
Artem Sergeev, 2017-07-27
@VKSITE

Yes, that's right, only the link must contain a text anchor.

K
Kirill Naumov, 2017-07-28
@deKubiK

That's right. It is recommended to put a link (provided that the second page) is relevant.

P
pifpafpro, 2017-07-28
@pifpafpro

Search engines love to follow links. They logically link your site's documents, improve behavioral factors, increase page views, and more. It is desirable that the text or word that will be your link is contained in one form or another in the document to which this link leads, in order to increase its relevance. You can read a lot of materials on the topic "how to make internal linking on the site."

A
Alexandra Metiza, 2017-08-02
@Metiza

It is necessary, yes :)
There is such a thing as internal PageRank, which determines the share of each page in the total "weight" of the site, because internal linking and "saving" this most valuable weight within the site is of great importance.
There is no universal algorithm. It is up to you to decide which page is more important to you - some target thematic article or a section with terms and conditions (in case of incorrect linking, all the weight may eventually go to it), and accordingly put links to certain materials of your site (and yes, in one article you have to link to another :) I can only advise you to study the issue of PageRank a
little deeper here.If we abstract from complex formulas and do not fall into a stupor on them, the picture becomes clearer. To understand where to remove links from and where to add them, I use a separate PageRank parameter in Netpeak Spider.
I hope that cleared things up a bit.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question