Articles
Paradoxical Experiences with WordPress Plugins
One side of the coin - Visual Composer As an end product, the idea of Visual Composer is positive. It's a drag/drop tool that can be used to easily create posts/pages in WordPress - an extension of the existing tools. In fact, it is packaged in my upcoming theme -...
Setting style heading tags for your WordPress theme
I am in the process of putting up a WordPress theme to the Theme Directory. At the top of the parent style.css, WordPress requires something like this: /* Theme Name: Twenty Fourteen Child Theme URI: http://example.com/twenty-fourteen-child/ Description: Twenty...
Tips using phpDocumentor
I built a batch file that understands how to generate the documentation for my project. Here are some points that I think are noteworthy for future reference: When using a batch file (instead of just going through a command-line), ensure that we call pear before...
Installing phpDocumentor
I wanted to create documentation for my most recent PHP project. My code was all set and in a form that it should be in - I just needed a way to generate the docs. I considered two options: phpDocumentor ApiGen Ended up going with phpDocumentor because it looks like...
Installing PEAR on Windows 8
PEAR is the PHP Extension and Application Repository. It's basically an add-on to PHP that has a bunch of frameworks that are available. You can read more about it at the official site. Getting PEAR onto my system was not obvious. I came across two articles that...
Fatal error: Maximum function nesting level of ‘100’ reached
That's the error I got when using Visual Composer's Posts Grid element on a long and involved post. It did not happen when displaying the post through the single.php or archive.php templates - only the Visual Composer element. After some searching, I came across this...