A mini maintenance release addressing a shortfall in the wordpress shortcode parser.
Unfortunately the wordpress shortcode API can’t successfully process the following:
[intlink id="1" /] Normal content [intlink id="2"]Link content[/intlink]
OR
[intlink id="1"][/intlink] Normal content [intlink id="2"]Link content[/intlink]
To circumvent this, where users require no link text (to display the post title), the plugin will now accept the string “{{empty}}” as the link content like so:
[intlink id="1"]{{empty}}[/intlink] Normal content [intlink id="2"]Link content[/intlink]
I submitted a bug 2 years ago [http://core.trac.wordpress.org/ticket/9264], unfortunately it remains unfixed at the date of this post.
Running phing from its phar
As of phing 2.4.10 you can download phing as a phar file, perfect for using phing on servers with PHP > 5.3 but without access to PEAR. Quite new to phar files I struggled to get started, but it turns out its actually really easy! Failing to find any resources online myself, hopefully this will help somebody else.
Read More »