To remove the pagination from wordpress search page, add the following script in your theme’s functions.php file: function no_nopaging($query) { $query->set('nopaging', 1); } add_action('parse_query', 'no_nopaging'); And you are done!
Tag: Wordpress
WordPress plugins to help Administrators
While browsing thorough my emails today morning. I found a link to wordpress plugins for blog administrators. This is a well categorized list and have plugins listed for User interface improvement, security, collaboration, editing support etc. Let me know if you like it or not. Or which plugins do you use on every wordpress site...
Exporting WordPress blog to Blogger
If you ever need to export your wordpress blog to Google Blogger, then you can use a great tool for this I just found – Convert WordPress Export to Blogger. Follow below steps: Export your wordpress blog as XML file. Use the tool above to convert that XML file to blogger compatible import file. Use...