Inpixelitrust blank theme is a simple HTML5 theme for starting a WordPress project. It is primarly based Randy Jensen & Randy Hoyt HTML5 starter theme with other goodies added . It uses some parts of Paul Irish’s HTML5 Boilerplate The CSS used is based on pieces of Raphael Goetter’s knacss. It is responsive ready and uses a fluid layout. This theme is aimed for WordPress developpers looking for a cleaner theme to start a project than twenty-eleven. The code is highly commented so that … Continue reading
Remove any contact info field from WordPress User Profil
A little to snippet to remove any contact information field that appears under the contact info in WordPress. Fist find it’s id (the CSS id of the field), and then use this code : [php] function remove_contactmethod( $contactmethods ) { unset($contactmethods['field_id']); unset($contactmethods['googleplus']); return $contactmethods; } add_filter(‘user_contactmethods’,’remove_contactmethod’,10,1); [/php]
Wp Clean Up Advanced : a WordPress snippet/plugin to clean administration area
What is WP-cleanup-enhanced WP-cleanup-enhanced is a developer oriented plugin/code snippet to clean up WordPress admin. In this plugin I put togheter many snippets to clean up the admin part of WordPress. It was inpired by the Selfish fresh Start plugin I did not provide an administration area, there are many plugins like adminize that do the job very well. This plugin is more oriented towards developers that don’t need a wysiwyg interface, and just want to clean up there client’s admin area … Continue reading
On onextrapixel : 10 WordPress Plugins: Easy for Designers, Happier Clients
After working for a while with wordpress, I gathered a collection of usefull plugins. I share 10 of them in the article published on onextrapixel : 10 WordPress Plugins: Easy for Designers, Happier Clients
Add a Google CSE custom search without iframe on WordPress
This little tutorial aims at explaining how to easily set up a custom google search engine for your WordPress website without using any plugin. The iframe method was depreciated by Google since june 2011, so I will provide a method that is base on the new graphical elements proposed by Google. The iframe still seems to work, but I don’t know if it will be supported in the future. Create a custom search in Google. To create your own custom … Continue reading