这是我的搜索代码
<div id="search">
<form method="get" action="http://www.other-website.com/search">
<input type="hidden" name="f" value="">
<input type="text" placeholder="Temukan informasi, komunitas & produk yang kamu cari disini" accesskey="s" name="q">
<input type="submit" value="Search">
</form>
</div>
这是标签代码(仅显示文本“不链接”)
<?php
$posttags = get_the_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo $tag->name . ' ';
}
}
?>
该代码可以很好地应用于网站,但我必须在搜索中输入文本。我只想把我的标签放在那个搜索文本上
所以我的问题是如何使固定词(我的标签)自动放置在搜索中或我必须放置标签代码的位置,搜索结果是链接在@www.other-website.com/search 上的 mytag,因此用户不必输入? 我想在其他网站搜索中搜索我的标签