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]
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
On onextrapixel: using WordPress custom template to create layout with different sidebar
I was contacted by onextrapixel to write some article for them. My first article was published yesterday. It explains how to use wordpress custom templates to create a blog page to display wordpress posts for websites that mainly use pages. It also explains how to customize the sidebar to create a layout with two different sidebars : one for the “normal” pages and one for the “blog post”. Here is the article: “Using WordPress Custom Template to Create Layout with … Continue reading