wpXtreme

Follow me on GitHub

Welcome to wpXtreme Pages.

wpXtreme is a powerful tool to enhance your Wordpress experience. Just by downloading one free plugin you will get a lot of improvements to the WordPress core and you will gain access to the WPX Store, the first app store for WordPress.

ENHANCE WORDPRESS

wpxTreme Framework wpXtreme dramatically improves the WordPress core adding awesome features and useful tools; wpXtreme will be free forever.

THE FIRST WORDPRESS APP STORE

wpXtreme Support With our plugin, you will be able to access the WPX Store, where you can buy and sell professional grade WordPress plugins with just a few clicks.

WE LOVE YOUR SECURITY

wpx SmartShopWe think your security is very important. Our plugin add checks and features to highly improve your WordPress security.

NEW STUFF COMING

wpXtreme Mobile integrationOur team is working hard to deliver new features and plugins, the only thing you will have to check is your dashboard.

Codetip of week

This week let me show how to check the type of variable.

// You can get the type of variable in this way
$type = gettype( $foo );

// Then you check if it is an array
if( 'array' == $type ) { /* todos */ }

// However, in that way, you force a string compare and the 'array' string could be change in next future
// So, look the right way
if( is_array( $foo ) ) { /* todos */ };