WordPress Use Google Custom Search Without Plugins

Google-Search-and-WordPress

How to Implement Google Custom Search Results into WordPress Based Websites Without Plugins
WordPress has a relatively good search functionality but tends to get sluggish and doesn’t match keywords that well, and of course when you make a search, WordPress will use a lot resources, why not use the Google custom search instead the default search forms? This is even more apparent when your site is quite large and you have many posts and/or pages. In addition, wordpress search functionality display results ordered by date and not by its relevance to the keywords. If you want to use Google custom search, here are 2 popular Google Custom Search plugins for you to choose from:

Google-Search-and-WordPress
Google-Search-and-WordPress

1) Google Custom Search Plugin

2) Google Custom Search for WordPress

If you don’t want to use plugin, and want to use the Google custom search engine to replace the WordPress default search, you can follow this guide:

How to replace the WordPress search function with Google Custom Search engine

Read more

How to Make Good Use of WordPress Post Class

If you want to change the default WordPress post class, you can follow this guide to change it by yourself. It can be ‘easy as’ in the content loop adding a bit of code with a call to post_class(), we can easy add a new class like this, post_class(‘my-class’) then we just style the new class in our style.css.

Read more

Remove The WordPress Comment URL Links

If you want to remove the WordPress comment url links, you can add the following code to the functions.php function dobeweb_remove_comment_fields($fields) { unset($fields[‘url’]); return $fields; } add_filter(‘comment_form_default_fields’,’dobeweb_remove_comment_fields’);

Fantastic Search Forms Styling!

Here are some great styled search forms in html5, if you are looking for the CSS code for your project, here are some really cool search forms for you to choose from, just grab the code and use it on your sites. Basic html code: Search Small Brown Search – by Fabian Pecher All the … Read more