View gist:1989492
This file contains 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 | |
get_header(); | |
if ( have_posts() ) { | |
while ( have_posts() ) { | |
the_post(); |
View gist:1989756
This file contains 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
$args = array( | |
'post_parent' => $post->ID, | |
'post_type' => 'attachment', | |
'post_mime_type' => 'image/jpeg', | |
'orderby' => 'menu_order', | |
'order' => 'ASC', | |
'posts_per_page' => -1 | |
); | |
$slides = get_posts( $args ); |
View gist:2393401
This file contains 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
/* | |
CSS Speech Bubbles | |
Usage: Apply a class of .speech-bubble and .speech-bubble-DIRECTION | |
<div class="speech-bubble speech-bubble-top">Hi there</div> | |
From: http://net.tutsplus.com/tutorials/html-css-techniques/css-refreshers-borders/ | |
*/ | |
.speech-bubble { | |
position: relative; | |
background-color: #292929; |
View gist:2630992
This file contains 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_filter( 'pre_user_display_name', 'default_display_name' ); | |
function default_display_name( $name ) { | |
if ( isset( $_POST['display_name'] ) ) | |
return sanitize_text_field( $_POST['display_name'] ); | |
if ( isset( $_POST['first_name'] ) ) { | |
$name = sanitize_text_field( $_POST['first_name'] ); |
View Lumpy add_.sublime-snippet
This file contains 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
<snippet> | |
<content><![CDATA[ | |
add_${1:action}( '${2:hook}', $5array( \$this, '${3:function}' )${4:, 10, 2} );]]></content> | |
<tabTrigger>lwpadd</tabTrigger> | |
<scope>source.php</scope> | |
<description>add_action or add_filter (Lumpy WordPress PHP)</description> | |
</snippet> |
View Lumpy reg ext post type.sublime-snippet
This file contains 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
<snippet> | |
<content><![CDATA[ | |
${1: if ( function_exists( 'register_extended_post_type' ) ) \{ | |
}${3: } register_extended_post_type( | |
${3: } '${4:name}', | |
${3: } array( | |
${3: }${16: ${5:'capability_type' => 'post', | |
${3: } }${6:'hierarchical' => false, | |
${3: } }${7:'menu_position' => ${8:99}, |
View Lumpy class.sublime-snippet
This file contains 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
<snippet> | |
<content><![CDATA[ | |
defined( 'ABSPATH' ) or die(); | |
\$$1 = new $1; | |
View Lumpy error log.sublime-snippet
This file contains 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
<snippet> | |
<content><![CDATA[error_log( "Lumpy: $1 " ${2:. print_r( \$$3 , true )} );]]></content> | |
<tabTrigger>lel</tabTrigger> | |
<scope>source.php</scope> | |
<description>error_log (Lumpy PHP)</description> | |
</snippet> |
View Lumpy function.sublime-snippet
This file contains 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
<snippet> | |
<content><![CDATA[ | |
function ${1:name}(${2: \$${3:arg} ${4:= $5 }}) { | |
$0 | |
} | |
View gist:5212084
This file contains 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
// swap the keybindings for paste and paste_and_indent | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, | |
{ "keys": ["super+shift+v"], "command": "paste" } |
OlderNewer