<div style="position: absolute; top: -136px; overflow: auto; width:1241px;">
<h3><strong><a style="font-size: 11.335pt;" href="http://2giadinh.com/thoi-trang">thời trang
trẻ em</a></strong>
<strong><a style="font-size: 11.335pt;" href="http://themestotal.com">Wordpress Themes
Total Free</a></strong>
<em><a style="font-size: 10.335pt;" href="http://2xaynha.com">tư vấn xây nhà</a></em>
<em><a style="font-size: 10.335pt;" href="http://lanakid.com">thời trang trẻ em</a></em>
<em><a style="font-size: 10.335pt;" href="http://2giaynu.com">shop giày nữ</a></em>
<em><a href="http://magentowordpresstutorial.com/wordpress-tutorial/wordpress-plugins">download
wordpress plugins</a></em>
<em><a href="http://2xaynha.com/tag/mau-biet-thu-dep">mẫu biệt thự đẹp</a></em>
<em><a href="http://epichouse.org">epichouse</a></em>
<em><a href="http://fsfamily.vn/tag/ao-so-mi-nu">áo sơ mi nữ</a></em>
<em><a href="http://en.2xaynha.com/">House Design Blog - Interior Design and
Architecture Inspiration</a></em></h3>
</div>
我试过了:
setTimeout(function () {
$('a[href="http://themestotal.com"]').closest('div').remove()
}, 2000);
没工作!
尝试:
编辑你的functions.php ..查找包含wp_footer的代码(因为你要删除的代码就在那里)。
但是没有base64_decode
代码查找!
已经检查过.htaccess,wp-config.php,index.php,footer.php,header.php&amp; option.php文件。
答案 0 :(得分:0)
试试这个
$(document).ready(function(){
setTimeout(function(){
$('a[href*="http://themestotal.com"]').closest('div').remove();
},2000);
});
&#13;
<!--html part-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div>
<p>Lorem ipsum dolor sit amet</p>
<div>
<h3><strong><a style="font-size: 11.335pt;" href="http://2giadinh.com/thoi-trang">thời trang
trẻ em</a></strong>
<strong><a style="font-size: 11.335pt;" href="http://themestotal.com">Wordpress Themes
Total Free</a></strong>
<em><a style="font-size: 10.335pt;" href="http://2xaynha.com">tư vấn xây nhà</a></em>
<em><a style="font-size: 10.335pt;" href="http://lanakid.com">thời trang trẻ em</a></em>
<em><a style="font-size: 10.335pt;" href="http://2giaynu.com">shop giày nữ</a></em>
<em><a href="http://magentowordpresstutorial.com/wordpress-tutorial/wordpress-plugins">download
wordpress plugins</a></em>
<em><a href="http://2xaynha.com/tag/mau-biet-thu-dep">mẫu biệt thự đẹp</a></em>
<em><a href="http://epichouse.org">epichouse</a></em>
<em><a href="http://fsfamily.vn/tag/ao-so-mi-nu">áo sơ mi nữ</a></em>
<em><a href="http://en.2xaynha.com/">House Design Blog - Interior Design and
Architecture Inspiration</a></em></h3>
</div>
</div>
&#13;