I hereby claim:
- I am randyjensen on github.
- I am randyjensen (https://keybase.io/randyjensen) on keybase.
- I have a public key whose fingerprint is 9D8D 4E0B 561A 61FD 2E8C DE76 2DE0 9CE1 D8CA C08F
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| The actual Ninja Form submission | |
| "fields": { | |
| "99": false, | |
| "100": "Opt 2", | |
| "101": [ | |
| "Check 2", | |
| "Check 3" | |
| ] | |
| }, |
| // Change Placeholder text for Post/Page/CPT Title | |
| add_filter( 'enter_title_here', 'change_title_placeholder' ); | |
| function change_title_placeholder( $title ) | |
| { | |
| $screen = get_current_screen(); | |
| if ( 'POSTTYPE' == $screen->post_type ){ | |
| $title = 'Some custom text'; | |
| } |
| vagrant box add precise64 http://files.vagrantup.com/precise64.box |
| function my_acf_load_field($field) { | |
| $field['choices'] = array(); | |
| $post_type = 'xxxPOST-TYPE-NAMExxx'; // post type name | |
| $acf_field_id = 'xxxACF-FIELD-IDcxxx'; //eg: field_52129dt7c49dd | |
| $global_offset = 500; // whatever you want your looping offset to be | |
| $num_props = wp_count_posts($post_type)->publish; | |
| $num_props_pages = (intval($num_props/$global_offset)) + 1; | |
| $offset_props = 0; |
| object(SimpleXMLElement)#329 (42) { | |
| ["CompID"]=> | |
| string(4) "7069" | |
| } | |
| ["Property"]=> | |
| object(SimpleXMLElement)#374 (61) { | |
| ["PropertyID"]=> | |
| string(2) "21" | |
| ["CoStarID"]=> | |
| string(6) "409537" |
| $('.animated-selector').addClass('hidden').stop().delay(500).queue(function(){ | |
| $(this).removeClass('hidden'); | |
| }); |
| //----Append HTML elements---- | |
| /* jQuery */ | |
| $(document.body).append("<div id='myDiv'><img src='im.gif'/></div>"); | |
| /* native equivalent */ | |
| var frag = document.createDocumentFragment(); | |
| var myDiv = document.createElement("div"); | |
| myDiv.id = "myDiv"; |
| { | |
| "bold_folder_labels": true, | |
| "detect_slow_plugins": false, | |
| "caret_style": "phase", | |
| "ensure_newline_at_eof_on_save": true, | |
| "file_exclude_patterns": | |
| [ | |
| ".DS_Store", | |
| ".gitkeep", | |
| "dump.rdb" |