Disable Gutenberg via Filter

So the Gutenberg editor can be very interesting to use and very user friendly. If you are use to using other editors or layout systems then sometimes it is a good idea to disable it in the child theme.  All you have to do is add the following code to your...

Disable PHP File Execution via .htaccess

Here is the code that you can put in your .htaccess file within a folder to disable php file execution.  It is very useful in the WordPress's wp-content/uploads directory for making sure files that get uploaded are not executable. <Files *.php> deny from all...

Divi Accordion Customizations

So when it comes to Divi Accordion I didn't like how the first one was always open and there wasn't a way to close one without opening up another one.  So I came across the following code to accomplish what I was looking for. Here is the Javascript needed to give...

Divi Child Theme

Click Here to download the Divi-child.zip file.  The following are the code snippets for the respective files so you can recreate them yourself.  The functions file includes the style.css files from both the parent and child theme. It also gets the current time stamp...

Enqueue Styles and Scripts in Functions File for Child Theme

This is what you need to include in the functions file of your child theme to include the parents style without having to do a @import in the css file. This also checks the last modified time and uses that as a query variable to ensure you are loading the latest...