Description
Implement [bw_search] shortcodeNeeded when not using an Artisteer theme – which implements the [search] shortcode So should we implement it as the search shortcode?
Usage
$string = bw_search( $atts, $content, $tag );Parameters
- $atts
- ( array ) optional – shortcode parameters
- $content
- ( string ) optional – not expected
- $tag
- ( string ) optional – shortcode tag
Returns
string generated HTML for the search form <form class="art-search" method="get" name="searchform" action="http://qw/wordpress/"> <input name="s" type="text" value="" /> <input class="art-search-button" type="submit" value="" /> </form>Source
File name: oik-bob-bing-wide/shortcodes/oik-search.phpLines:
1 to 4 of 4
function bw_search( $atts=null, $content=null, $tag=null ) { $form = get_search_form( false ); return( $form ); }View on GitHub
Called by
Invoked by
Calls
Call hooks
API Letters:
