See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| <?php | |
| // check to see if there is a post type in the URL | |
| if ( isset( $_GET['post_type'] ) && $_GET['post_type'] ) { | |
| // save it for later | |
| $post_type = $_GET['post_type']; | |
| // check to see if a search template exists | |
| if ( locate_template( 'search-' . $post_type . '.php' ) ) { |
Here are a few common tasks you might do in your templates, as they would be written in ExpressionEngine vs. Craft CMS.
Leaving this for historical reasons, but with the latest iteration I set up proper dotfiles. Check em out
After too many years of tinkering my machine is a bit all over. With Mojave High Sierra Montery I wanted to start fresh
Make sure everything is up to date.
| module.exports = function(grunt) { | |
| "use strict"; | |
| // ------------------------------------------------------------------------- | |
| // #### Load plugins as needed #### | |
| // Using a 'just in time' approach -- meaning: only load plugins when they | |
| // are needed -- this will automatically find, then load, any and all | |
| // plugins that are needed by the task currently being executed. It will | |
| // scan the devDependencies object, in package.json, and match any of the |
| <?php | |
| add_action( 'wp_enqueue_scripts', 'enqueue_my_styles' ); | |
| /** | |
| * Example callback function that demonstrates how to properly enqueue conditional stylesheets in WordPress for IE. | |
| * IE10 and up does not support conditional comments in standards mode. | |
| * | |
| * @uses wp_style_add_data() WordPress function to add the conditional data. | |
| * @link https://developer.wordpress.org/reference/functions/wp_style_add_data/ |
| // This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.github.io | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
| */ |