Posts Tagged ‘Search’

 
 

How To Change Search URL on WordPress

Posted 19 Sep 2011 — by WPGPL Team
Category WordPress Tricks

We already know that WordPress Search URL is http://wpgpl.com/search/keyword right? Now we got nicely tips and we will show you how to change this search URL permalink. This tips coming from Andrew Keith. You need to paste this code on functions.php to make it works.

Open your functions.php on your theme and add this code

function custom_search_url( $search_rewrite ) {
if( !is_array( $search_rewrite ) ) { return $search_rewrite; }

$new_array = array();
foreach( $search_rewrite as $pattern => $s_query_string ) {
$new_array[ str_replace( 'search/', 'new-search-url/', $pattern ) ] = $s_query_string;
}
$search_rewrite = $new_array;
unset( $new_array );
return $search_rewrite;
}
add_filter("search_rewrite_rules", "custom_search_url");

Please notes this code didn’t redirect any /?s=Search but this code will redirect any /search/ into something else domain. We hope this tutorial to change search URL on WordPress worked on you

How To Create Dynamically Search Categories and Child Categories Only Form

Posted 14 Dec 2010 — by WPGPL Team
Category WordPress Tricks

Using WordPress there are unlimited abilites, all you can do on WordPress. Today WordPress Tutorial is How To Create Dynamically Search Categories and Child Categories Only Form.

There are some problem or litle bit hack to create custom WordPress, example we want to create search form only on spesify categories. Using This code below you can do it easely. Read the rest of this entry »

All in One SEO Pack

Posted 08 Apr 2009 — by WPGPL Team
Category WordPress Plugins

All in One SEO Pack is another my favorite WordPress Plugins, this plugin so genious and useful. I was tried in my several blog and running without any worries. This plugin is the right solution for you WordPress blogs. Easy to Install and easy to configure, make All in One SEO Pack is the right solution.

You can download All in One SEO Pack on WordPress Plugins area. This plugins have a tagline Optimizes your WordPress blog for Search Engines (Search Engine Optimization). This plugin really popular, you can check on the download stats below.

all-in-one-seo-pack

download All in One SEO Pack or visit All in One SEO Pack developer website