Sometimes we need a simple way of passing a custom variable(s) to WordPress. WordPress has a organised way in this respect as it passes a lot of arguments in URL, so unless you want to grub around directly with the $_GET array, then this solution is a little more elegant. First look at the code: … Continue reading WordPress permalinks and passing custom Variables to it
Blog
How to Create a Child Theme in WordPress?
Create a directory in your themes directory to hold the child theme. The theme directory is wp-content/themes. You can name the directory without any space as part of the name, and it is common practice to use the name of the parent theme folder with “-child” appended to it. For example, if you are making … Continue reading How to Create a Child Theme in WordPress?
Why use a WordPress Child Theme?
A WordPress child theme is a theme that inherits the functionality of another theme, called the parent theme. Child themes allow you to modify, or add to the functionality of that parent theme. A child theme is the safest and easiest way to modify an existing theme, whether you want to make a few tiny … Continue reading Why use a WordPress Child Theme?