Defining a Constant with PHP
Defining a constant in PHP can come in handy when working with a value that will be used throughout your script. What is a constant exactly? According to PHP.net, “A…
Defining a constant in PHP can come in handy when working with a value that will be used throughout your script. What is a constant exactly? According to PHP.net, “A…
When it comes to forms, every browser displays inputs, select drop downs and buttons differently. You can style certain elements using CSS but things like radio buttons and checkboxes are…
By default WordPress offers some great options. Whenever a member joins, they have the ability to add more information about themselves, such as a Web site URL, a short bio…
This post has been updated in “is_child() Conditional Function for WordPress”. WordPress has some default conditional tags that are really helpful when developing themes and plugins that need specific functions…
I just stumbled across these two little pieces of code and thought that they might be useful to some people out there who want to mess around with the default…
If you take a look at the template hierarchy in WordPress, you will notice that you have the ability to create custom templates for different category pages by simply adding…
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…
Have you ever wondered how some sites have text in their search box? This one is pretty easy. All you need to do is modify the searchform.php file, which can…
WordPress is a great tool whether you want to install a basic blog or use it as a content management system. Programmers can very easily go in and manipulate the…