This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Complete List of VSCode Defaults: https://vscode.readthedocs.io/en/latest/getstarted/settings | |
| { | |
| // Most Commonly Used | |
| // Controls auto save of dirty files. Accepted values: 'off', 'afterDelay', 'onFocusChange' (editor loses focus), 'onWindowChange' (window loses focus). If set to 'afterDelay', you can configure the delay in 'files.autoSaveDelay'. | |
| "files.autoSave": "off", | |
| // Controls the font size in pixels. | |
| "editor.fontSize": 14, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Should ACF ever become disabled or deactivated for any reason | |
| * these functions will ensure that nothing dies in the process. | |
| * | |
| * These functions were inspired by {@author Steve Grunwell} and | |
| * {@author Bill Erickson}. Their work can be viewed, respectively, | |
| * at {@link https://stevegrunwell.com} and | |
| * {@link https://www.billerickson.net}. | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Developer API: Snippets for common WordPress configuration setups. | |
| * | |
| * IMPORTANT: You MUST defined the `const` variables in this file before | |
| * implementing it into your current project. | |
| * | |
| * @link https://codex.wordpress.org/Function_Reference/register_taxonomy | |
| * @link https://codex.wordpress.org/Function_Reference/register_post_type | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 301 Redirects for .htaccess | |
| # Redirect a single page: | |
| Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
| # Redirect an entire site: | |
| Redirect 301 / http://www.domain.com/ | |
| # Redirect an entire site to a sub folder | |
| Redirect 301 / http://www.domain.com/subfolder/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * This is just a widget template file. Be sure to change everything your | |
| * reading to suit your website's needs. | |
| * | |
| * IF YOU'RE A WORDPRESS NEWB AND DO NOT KNOW WHAT YOU'RE DOING... | |
| * | |
| * This entire file, with the exception of the lines that contain | |
| * `public [static] function` can be modified to whatever you wish. Just be sure | |
| * to NOT rename any of the methods contained in this class. For more information, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Get your current external IP address for the iStat Pro dashboard widget. | |
| * | |
| * For those of us who refuse to let go of the iStat Pro dashboard widget (version 4.9.2), | |
| * this function is located inside of `~/Library/Widgets/iStat\ Pro.wdgt/scripts/core.js` | |
| * beginning at line 243. As of when this Gist was published, Bjango killed the endpoint | |
| * that powered their external IP address service. Thankfully, there's | |
| * {@link https://www.ipify.org}, a free public IP API endpoint. Simply copy and paste the | |
| * function below over the predecessor inside the core.js file and the IP service is | |
| * restored (once again). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Simple function to check if it's currently a 'leap year'. | |
| * | |
| * @return bool True if it is. False if not. | |
| */ | |
| function is_leap_year() { | |
| // Ensure that '0' isn't read as boolean. | |
| $zero = (int) 0; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Use `Lodash` as the drop-in replacement for Underscore in WordPress. | |
| * | |
| * This script uses the `CDNJS` API to ensure the latest version of Lodash is | |
| * always retrieved. By default, Lodash will run only on the WordPress frontend | |
| * unless the `$sitewide` parameter is set to `true`. | |
| * | |
| * @author Davey Jacobson <[email protected]> | |
| * @package Davey_Jacobson |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * From the vessel that was this author... | |
| * | |
| * "Why this is simply... WONDERFUL! I have now entered this vessel known as | |
| * 'GEETHUB' and, yes, my reign is now uponeth your precious CODE! We | |
| * now begin the FINAL DELETION!" | |
| * | |
| * From the vessel that is, once again, this author... | |
| * |