「display: none;」を使用して複数ページの記事のページ x を非表示にするために CSS を使用するとします。次に、jQuery/javascript をクリックして表示する場合、検索ボットは他のページで以前に非表示にしたコンテンツを無視するか、それを含めますか?
短縮例:
<div id="displayed_page">
[page 1 is here first], [page 2 onclick], [etc...]
</div>
<div id="page1" style="display: none;">
first part of content that needs to be indexed
<button id="clicker" onclick="nextpage();">click me</button>
</div>
<div id="page2" style="display: none;">
second part of content that also needs to be indexed
<button id="clicker" onclick="nextpage();">click me</button>
</div>
<div id="page3" style="display: none;">
third part, et cetera...
<button id="clicker" onclick="nextpage();">click me</button>
</div>
Google ウェブマスター ツールを紹介しないでください。行ったことはあります。また、私は決して欺こうとしているわけではありません。基本的に、Wordpress 用のページネーション プラグインを作成し、非表示のコンテンツをインデックスに登録したいと考えています。しますか?