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…
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 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…
Wouldn’t you like to be able to display the actual search term entered by your user on the search results’ page? Good thing there is a very simple way in…
I created a plugin for the function I talked about in my post Retrieve and Display Images from a WordPress Post just in case there is anyone out there who…
This is something that most people who use PHP already know. I still think it is useful to mention it because some less experienced PHP coders might not have come…
I just had someone ask me why everything on their front page became bolded when they placed <?php the_content(‘(more’)); ?> in their code to use in conjunction with the more…
I have been developing some themes for WordPress and I couldn’t understand why they wouldn’t appear in the preview when they were selected. I went through all of my code…
This is just a revamp of a function I wrote a while back to add the ability to limit the number of words displayed when you call the excerpt or…
I wanted to remove the images from a WordPress post to give me more control of how I could layout the design for the front page of a website. After…