admin管理员组文章数量:1122832
I want to add a banner for some specific keywords that is searched.
For example: /?s=gold . If someone searched for gold, on side of "Search Results for: gold" I want to add an advertise for one of my products. But if someone is looking for oil, I want to add another advertise.
Does anyone knows how can I do that? I will appreciate. Thanks
I want to add a banner for some specific keywords that is searched.
For example: http://gold-prediction.com/?s=gold . If someone searched for gold, on side of "Search Results for: gold" I want to add an advertise for one of my products. But if someone is looking for oil, I want to add another advertise.
Does anyone knows how can I do that? I will appreciate. Thanks
Share Improve this question asked Jun 7, 2015 at 12:14 juanorajuanora 1112 bronze badges1 Answer
Reset to default 4You need to place the following code in your theme's search.php
file.
<?php
$search_query = get_search_query();
if ( $search_query == 'gold' ) {
echo 'my gold ad';
} else if ( $search_query == 'oil' ) {
echo 'my oil ad';
}
本文标签: Edit search results in order to advertise
版权声明:本文标题:Edit search results in order to advertise 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736295266a1929534.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论