https://gist.github.com/danielmcclure/de2b8ce17deae24c9f24cb60512c8ce2
Enable & Customise AMP Compatibility Within WordPress Themes
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. functions.php Original Gist
Ethereum Greeter Updated from v4
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. greeter.sol ``` pragma solidity ^0.5.0; contract mortal { /* Define variable owner of the type address */ address owner; /* This function is executed at initialisation and sets the owner of the
Run WordPress Updates, WordPress Plugin Updates, and WordPress Theme Updates Automatically
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. wp-config.php ```
Cheatsheet for customising the WordPress Login page
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. functions.php ```
Selectively Send Gravity Forms Notifications in Plain Text
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. functions.php ```
Delete Gravity Form Entries After Submission
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. functions.php ```
TwiML Bin: Enable SIP for Outgoing Calls via Twilio
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. twiml.xml ``` {{To}} ``` Original Gist https://gist.github.com/d5f6bab133aa6edd3627c83d92f28bb9
TwiML Bin: Enable SIP for Incoming Calls via Twilio
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. twiml.xml ``` USERNAME@SIP_DOMAIN.sip.us1.twilio.com ``` Original Gist https://gist.github.com/4d21f53846f26da99f48d8041223390a
Enable Archive Settings for multiple Custom Post Types via Genesis
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. functions.php ```
Register Theme Support for Gutenberg Wide Images
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. functions.php ```php
Enable excerpts for LearnDash Lessons
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. ``` * Enable excerpts for LearnDash Lessons */ function add_excerpts_to_ld_lessons() { add_post_type_support( 'sfwd-lessons', 'excerpt' ); } add_action( 'init', 'badd_excerpts_to_ld_lessons'
Increase WordPress Memory Allocation
The following is a code snippet originally posted by Daniel McClure on GitHub as a Gist. wp-config.php ```php /* Increase WordPress Memory Allocation */ define( 'WP_MEMORY_LIMIT', '128M' ); ``` Original Gist https://gist.github.com/danielmcclure/78757c016b99de86728d