Idukkan Tamil Short film

It depicts the struggle of an old man failing miserably at earning some money for his sick wife, while a cool headed beggar intervenes and changes his life. … [Read more...]

Remove the query strings from the static files in your wordpress installation

According to Google SEO if the static files of your website have query strings in the end they cannot be cached by proxy servers. That is why it would give you a lower grade through the Google Page Speed Insights Page. Well, adding the query strings is a way of solving the problem of caching when you make changes to your static files. E.g. if you change one parameter in your css file and then you … [Read more...]

Redirect attachment, search, author and archive pages in wordpress

If you want to disable the attachment, search, author and archive pages in wordpress just use this code in your functions.php file of your theme. You may redirect the traffic in any way that you want. Here the users are redirected to the home page of the website (you may uncomment the line about 404 to redirect them to the 404 page). add_action('template_redirect', … [Read more...]

Remove admin bar links in wordpress

You may add this code in your functions.php file in order to remove links from the admin bar of your wordpress installation according to the id of the current user. Here we check whether the id of the current user is 4. function remove_admin_bar_links() { global $wp_admin_bar,$current_user; $wp_admin_bar->remove_menu('wp-logo'); // Remove the WordPress … [Read more...]