I’m happy to be able to share today that Never5 released a new WordPress plugin: WP Car Manager. WP Car Manager is a WordPress plugin for managing and listing your vehicles, its goal is to enable anyone to manage and list their cars by using WordPress.
Continue Reading…
Category Archives: WordPress Development
Integrate with Related Posts for WordPress
Related Posts for WordPress uses multiple types of content to determine what is related. This includes titles, content, categories, tags. I wrote a post on what makes a post related on the Related Posts for WordPress website that goes into depth on how these different types of content are used.
Continue Reading…
Take the Pain out of Email Related Development
We’ve all had to deal with them in a project once, emails. This doesn’t have to be directly developing on emails, think developing on something that triggers an email. Now if there’s one thing I hate while development, it’s having to wait on something. And that’s what emails make me do. Wait.
Continue Reading…
Check for nonces in WordPress AJAX calls
WordPress made using AJAX easier than ever. By simply hooking into one or two actions, depending on where the AJAX needs to be available, you can setup the PHP side of your AJAX. The JavaScript part isn’t much harder. With jQuery bundled in WordPress it’s easily done with one of the jQuery AJAX functions.
Continue Reading…
Debugging in WordPress
So you’re developing with WordPress. Whether you’re working on your own plugins, themes or doing client work, you’ll eventually run into the need of debugging something. Most people will simply print the data they need to debug to the screen but I’m not a big fan of this. When working on WordPress, or any web application, I don’t want to search through the browser where the data/error is being printed. I want a separate screen where all my data is logged in a clear way.
Continue Reading…