我在 WordPress 上創(chuàng)建了超過 10k 個頁面,并且為了避免在 Google 上因內容稀少而受到 Panda 懲罰,我所做的是將 JavaScript 代碼放在 loop-page.php 上并檢查頁面是否沒有內容并添加元用于禁止抓取頁面的標簽,但它并非一直有效。這是我添加的代碼。<?php if($post->post_content=="") { ?><p>We are still updating our website with contents. Please check back next time.</p><script> (function(){ var meta = document.createElement("meta"); meta.setAttribute("name", "robots"); meta.setAttribute("content", "noindex, nofollow"); document.head.appendChild(meta); var meta2 = document.createElement("meta"); meta2.setAttribute("name", "googlebot"); meta2.setAttribute("content", "noindex"); document.head.appendChild(meta2); })()</script>你能給我一個想法來正確地做到這一點嗎?當 Google 抓取頁面時,我的 JavaScript 似乎無法運行,順便說一句,我正在使用 SEO Ultimate 插件
如何在 WordPress 上僅排除空頁面在 Google 中的索引
阿波羅的戰(zhàn)車
2022-10-13 19:26:40