Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| add_filter( 'edd_enabled_payment_gateways', 'kws_edd_enabled_payment_gateways'); | |
| /** | |
| * Modify the gateways for users who can manage options so that the Test Payment gateway is activated. | |
| * See /easy-digital-downloads/includes/gateways/functions.php | |
| * @see edd_get_enabled_payment_gateways() | |
| * @param array $gateways Existing activated gateways array | |
| * @return array Modified array | |
| */ | |
| function kws_edd_enabled_payment_gateways($gateway_list) { |
| <?php | |
| // Change /*CUSTOMIZE_THIS*/ to a unique name (two places). Go ahead, make it long. | |
| // Like, your initials, and your full plugin name. | |
| // e.g. MTJ_Some_Awesome_Plugin_Controller | |
| /*CUSTOMIZE_THIS*/_Controller::init(); | |
| class /*CUSTOMIZE_THIS*/_Controller { | |
| function init() { |
| <?php | |
| /* | |
| Usage: | |
| $frag = new CWS_Fragment_Cache( 'unique-key', 3600 ); // Second param is TTL | |
| if ( !$frag->output() ) { // NOTE, testing for a return of false | |
| functions_that_do_stuff_live(); | |
| these_should_echo(); | |
| // IMPORTANT | |
| $frag->store(); | |
| // YOU CANNOT FORGET THIS. If you do, the site will break. |
| <?php | |
| /** | |
| * Database emtpying and file removing class. | |
| * | |
| * Truncates all necessary tables in the defined database and removes | |
| * any files uploaded by the demo user. | |
| * | |
| * @since 1.0.0 | |
| * | |
| * @author Thomas Griffin |
| <?php | |
| /** | |
| * Database emtpying and file removing class. | |
| * | |
| * Truncates all necessary tables in the defined database and removes | |
| * any files uploaded by the demo user. | |
| * | |
| * @since 1.0.0 | |
| * | |
| * @author Thomas Griffin |
| <?php | |
| /** | |
| * Archive Post Class | |
| * @since 1.0.0 | |
| * | |
| * Breaks the posts into three columns | |
| * @link http://www.billerickson.net/code/grid-loop-using-post-class | |
| * | |
| * @param array $classes |
| <?php | |
| add_filter( 'post_class', 'wps_query_post_class' ); | |
| /** | |
| * Archive Post Class | |
| * @since 1.0.0 | |
| * | |
| * Breaks the posts into three columns | |
| * @link http://www.billerickson.net/code/grid-loop-using-post-class | |
| * |
| // | |
| // Regular Expression for URL validation | |
| // | |
| // Author: Diego Perini | |
| // Updated: 2010/12/05 | |
| // License: MIT | |
| // | |
| // Copyright (c) 2010-2013 Diego Perini (http://www.iport.it) | |
| // | |
| // Permission is hereby granted, free of charge, to any person |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| <?php | |
| /* | |
| Plugin Name: Image P tag remover | |
| Description: Plugin to remove p tags from around images and iframes in content outputting, after WP autop filter has added them. (oh the irony) | |
| Version: 1.1 | |
| Author: Fublo Ltd | |
| Author URI: http://blog.fublo.net/2011/05/wordpress-p-tag-removal/ | |
| */ | |
| function filter_ptags_on_images($content) |