A Settings Link for Your WordPress Plugins
If you are developing a WordPress plugin, one of the first things I would suggest is adding a “Settings” link directly on the plugins page. This makes it easier for…
If you are developing a WordPress plugin, one of the first things I would suggest is adding a “Settings” link directly on the plugins page. This makes it easier for…
Creating a page list in WordPress is super easy. All it takes is one function call: <?php wp_list_pages(); ?>. The only problem with the list is if you have sub-pages…
In the old days of web programming, everyone use to lay things out with tables. Not so much, anymore. Today, if you are in the know, div tags and CSS…
While developing a site for a client, I needed to figure out a way to convert certain text elements into images. I had no clue how to do this but…
I decided my sidebar was looking a little plain. It needed something more than just ads, so I placed a list of my popular posts there. I think it looks…
Ever needed to check if a number is even or odd? If so, here is a pretty simple piece of code that does just that.
I know that the way most people treat multiple forms on one page is to have each form post to another PHP file where the form is validated, its information…
I just came across an issue where I needed to make sure that the text within a <pre> tag wrapped. The default for this tag it to just let the…
I just needed to do this for a client’s site to set an expiration date for a user and I thought it might be something that other programmers might like…
Ever notice that certain comments end up out of order. I’ve encountered this issue on one of my posts and I think I discovered the cause. The problem is that…