How-To Install WP-CLI on shared hosting

To do this you need SSH/telnet support

Run the following commands in the terminal
cd ~
mkdir wp-cli
cd wp-cli
curl -k -L https://raw.github.com/wp-cli/builds/gh-pages/phar/wp-cli.phar > wp-cli.phar
echo ‘alias wp=”php ~/wp-cli/wp-cli.phar”‘ >> ~/.bashrc
source ~/.bashrc

Less.js for WordPress has been adopted

My WordPress plugin Less.js has been adopted by Roy Sivan.

From today on I have no relation with this plugin anymore, Roy is the owner.

WordPress Portfolio CPT to Jetpack Portfolio CPT

If you have made a custom post type (CPT) called portfolio and want to convert to Jetpack`s portfolio type, simply run the following SQL command

UPDATE `wp_posts` SET `post_type` = 'jetpack-portfolio' WHERE `wp_posts`.`post_type` = `portfolio`;

Adopt Me: Offering WordPress plugins for adoption

In februari this year WordPress.org allowed plugin developers to  tag plugins with Adopt-Me.

In the next few weeks I will update all my plugins and offer some for adoption.

If you would like to adopt one or more of my WordPress plugins, use the contact form to contact me.

PhpStorm and Subversion on Windows

To use Subversion (SVN) under Windows on JetBrains PHPStorm 7, 8 and 9 you`ll need to install the Subversion Client  1.8.x from CollabNet first.
This can be found at www.collab.net/downloads/subversion

After installing the client, go to File –> Settings –> Version Control  –> Subversion
And set the path to C:\Program Files\CollabNet\Subversion Client\svn.exe   or whatever path you have installed the client in to.