| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘R | go to methods |
| ⌃G | go to line |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
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
| <form action="https://launchpad.37signals.com/authenticate" method="post"> | |
| <input name="product" value="YOUR-PRODUCT" type="hidden" /> | |
| <input name="subdomain" value="YOUR-SUBDOMAIN" type="hidden" /> | |
| <p>Username<br /> | |
| <input name="username" id="username" type="text" /></p> | |
| <p>Password<br /> | |
| <input name="password" id="password" type="password" /></p> |
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 | |
| /* | |
| Plugin Name: Disable plugins when doing local dev | |
| Description: If the WP_LOCAL_DEV constant is true, disables plugins that you specify | |
| Version: 0.1 | |
| License: GPL version 2 or any later version | |
| Author: Mark Jaquith | |
| Author URI: http://coveredwebservices.com/ | |
| */ |
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
| #!/bin/bash | |
| # Place this script in dir: /usr/bin | |
| # Change permissions: sudo chmod +x /usr/bin/MAMP-DOCK-INVISIBLE | |
| # | |
| # Ensure the MAMP 'Info.plist' file has the following entry: | |
| # <key>LSUIElement</key> | |
| # <string dock-visible="1">NO</string> | |
| # | |
| # Usage: |
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
| .gform_wrapper ul { | |
| padding-left: 0; | |
| list-style: none; } | |
| .gform_wrapper li { | |
| margin-bottom: 15px; } | |
| .gform_wrapper form { | |
| margin-bottom: 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
| add_action('get_header', 'start_ob'); | |
| add_action('wp_head', 'end_ob', 999); | |
| function start_ob() { | |
| ob_start('remove_yoast'); | |
| } | |
| function end_ob() { | |
| ob_end_flush(); | |
| } |
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
| jQuery(function($){ | |
| // Last word in title | |
| $('.sidebar-primary .widget-title').html(function(){ | |
| var text = $(this).text().split(' '); | |
| var last = text.pop(); | |
| return text.join(" ") + (text.length > 0 ? ' <span class="last">'+last+'</span>' : last); | |
| }); | |
| // First word in title |
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 | |
| // Changes past event views to reverse chronological order | |
| function tribe_past_reverse_chronological ($post_object) { | |
| $past_ajax = (defined( 'DOING_AJAX' ) && DOING_AJAX && $_REQUEST['tribe_event_display'] === 'past') ? true : false; | |
| if(tribe_is_past() || $past_ajax) { | |
| $post_object = array_reverse($post_object); | |
| } |