如何显示只搜索访问者的广告| Wordpress
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何显示只搜索访问者的广告| Wordpress相关的知识,希望对你有一定的参考价值。
Place snippet in functions.php. Works with the Shylock Adsense plugin (http://planetozh.com/blog/my-projects/wordpress-plugin-who-sees-ads-control-adsense-display/)
function scratch99_fromasearchengine(){ $ref = $_SERVER['HTTP_REFERER']; $SE = array('/search?', 'images.google.', 'web.info.com', 'search.', 'del.icio.us/search', 'soso.com', '/search/', '.yahoo.'); foreach ($SE as $source) { } return false; } Call: if (scratch99_fromasearchengine()) { INSERT YOUR CODE HERE } }
以上是关于如何显示只搜索访问者的广告| Wordpress的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Wordpress 的存档页面上显示所有类别的帖子?