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...
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...
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...
So there are times that I am in the need to encrypt data with the capability of decryption afterwards so md5 is not capable for me to use. $data = “Data to encrypt.”; $encryption_key = md5( $pass ); $encrypted_data = encrypt( $data, $encryption_key );...