CaDeAtH
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: Post tag listResolved
$tag = "apple"; $sql = 'tag=' . $tag .'&post_status=publish' . '&posts_per_page=0'; query_posts( $sql );I used query_posts to list down all the articles that has an APPLE tag…
Forum: Themes and Templates
In reply to: Search.php and SearchForm.phpI already found the problem,
it is on the
<input type="text" class="webbox" name="webbox" size="18" value="Search" onclick="sb_focus();" onblur="sb_out();"/>
name=”webbox”
I replace it into name=”s”Thank you
Forum: Themes and Templates
In reply to: Search.php and SearchForm.php<form role="search" method="get" id="searchform" action="<?php bloginfo('url')?>" name="searchform"> <div class="searchbar"> <input type="text" class="webbox" name="webbox" size="18" value="Search" onclick="sb_focus();" onblur="sb_out();"/> <button class="btn" title="Web Search" type="submit">Search</button> </div><!--searchbar--> </form>That’s my searchform…
Still it generates webbox in the URL…Forum: Fixing WordPress
In reply to: Post tag listThanks for the links.
All I want is like this.I will post an article about apple.
Below are the list of articles that have APPLE as tag.
Viewing 4 replies - 1 through 4 (of 4 total)