-
Notifications
You must be signed in to change notification settings - Fork 1
/
WP-Functions-Completions.sublime-completions.txt
1742 lines (1742 loc) · 173 KB
/
WP-Functions-Completions.sublime-completions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"scope": "source.php - variable.other.php",
"comment": "WP Functions",
"completions":
[
{"trigger": "__checked_selected_helper", "contents": "__checked_selected_helper(${1: ${2:\\$helper}, ${3:\\$current}, ${4:\\$echo}, ${5:\\$type}} );"},
{"trigger": "__clear_multi_author_cache", "contents": "__clear_multi_author_cache();"},
{"trigger": "__return_empty_array", "contents": "__return_empty_array();"},
{"trigger": "__return_empty_string", "contents": "__return_empty_string();"},
{"trigger": "__return_false", "contents": "__return_false();"},
{"trigger": "__return_null", "contents": "__return_null();"},
{"trigger": "__return_true", "contents": "__return_true();"},
{"trigger": "__return_zero", "contents": "__return_zero();"},
{"trigger": "_add_post_type_submenus", "contents": "_add_post_type_submenus();"},
{"trigger": "_admin_bar_bump_cb", "contents": "_admin_bar_bump_cb();"},
{"trigger": "_admin_notice_post_locked", "contents": "_admin_notice_post_locked();"},
{"trigger": "_admin_search_query", "contents": "_admin_search_query();"},
{"trigger": "_ajax_wp_die_handler", "contents": "_ajax_wp_die_handler(${1: ${2:\\$message}} );"},
{"trigger": "_autop_newline_preservation_helper", "contents": "_autop_newline_preservation_helper(${1: ${2:\\$matches}} );"},
{"trigger": "_canonical_charset", "contents": "_canonical_charset(${1: ${2:\\$charset}} );"},
{"trigger": "_cleanup_header_comment", "contents": "_cleanup_header_comment(${1: ${2:\\$str}} );"},
{"trigger": "_cleanup_image_add_caption", "contents": "_cleanup_image_add_caption(${1: ${2:\\$matches}} );"},
{"trigger": "_close_comments_for_old_post", "contents": "_close_comments_for_old_post(${1: ${2:\\$open}, ${3:\\$post_id}} );"},
{"trigger": "_close_comments_for_old_posts", "contents": "_close_comments_for_old_posts(${1: ${2:\\$posts}, ${3:\\$query}} );"},
{"trigger": "_config_wp_home", "contents": "_config_wp_home(${1: ${2:\\$url}} );"},
{"trigger": "_config_wp_siteurl", "contents": "_config_wp_siteurl(${1: ${2:\\$url}} );"},
{"trigger": "_convert_urlencoded_to_entities", "contents": "_convert_urlencoded_to_entities(${1: ${2:\\$match}} );"},
{"trigger": "_copy_image_file", "contents": "_copy_image_file(${1: ${2:\\$attachment_id}} );"},
{"trigger": "_custom_background_cb", "contents": "_custom_background_cb();"},
{"trigger": "_custom_header_background_just_in_time", "contents": "_custom_header_background_just_in_time();"},
{"trigger": "_deep_replace", "contents": "_deep_replace(${1: ${2:\\$search}, ${3:\\$subject}} );"},
{"trigger": "_default_wp_die_handler", "contents": "_default_wp_die_handler(${1: ${2:\\$message}, ${3:\\$title}, ${4:\\$args}} );"},
{"trigger": "_delete_attachment_theme_mod", "contents": "_delete_attachment_theme_mod(${1: ${2:\\$id}} );"},
{"trigger": "_deprecated_argument", "contents": "_deprecated_argument(${1: ${2:\\$function}, ${3:\\$version}, ${4:\\$message}} );"},
{"trigger": "_deprecated_file", "contents": "_deprecated_file(${1: ${2:\\$file}, ${3:\\$version}, ${4:\\$replacement}, ${5:\\$message}} );"},
{"trigger": "_deprecated_function", "contents": "_deprecated_function(${1: ${2:\\$function}, ${3:\\$version}, ${4:\\$replacement}} );"},
{"trigger": "_device_can_upload", "contents": "_device_can_upload();"},
{"trigger": "_doing_it_wrong", "contents": "_doing_it_wrong(${1: ${2:\\$function}, ${3:\\$message}, ${4:\\$version}} );"},
{"trigger": "_draft_or_post_title", "contents": "_draft_or_post_title(${1: ${2:\\$post}} );"},
{"trigger": "_e", "contents": "_e(${1: ${2:\\$text}, ${3:\\$domain}} );"},
{"trigger": "_edit_attachments_query_helper", "contents": "_edit_attachments_query_helper(${1: ${2:\\$where}} );"},
{"trigger": "_ex", "contents": "_ex(${1: ${2:\\$text}, ${3:\\$context}, ${4:\\$domain}} );"},
{"trigger": "_fix_attachment_links", "contents": "_fix_attachment_links(${1: ${2:\\$post_ID}} );"},
{"trigger": "_future_post_hook", "contents": "_future_post_hook(${1: ${2:\\$deprecated}, ${3:\\$post}} );"},
{"trigger": "_get_additional_user_keys", "contents": "_get_additional_user_keys(${1: ${2:\\$user}} );"},
{"trigger": "_get_admin_bar_pref", "contents": "_get_admin_bar_pref(${1: ${2:\\$context}, ${3:\\$user}} );"},
{"trigger": "_get_cron_array", "contents": "_get_cron_array();"},
{"trigger": "_get_custom_object_labels", "contents": "_get_custom_object_labels(${1: ${2:\\$object}, ${3:\\$nohier_vs_hier_defaults}} );"},
{"trigger": "_get_dropins", "contents": "_get_dropins();"},
{"trigger": "_get_last_post_time", "contents": "_get_last_post_time(${1: ${2:\\$timezone}, ${3:\\$field}} );"},
{"trigger": "_get_list_table", "contents": "_get_list_table(${1: ${2:\\$class}, ${3:\\$args}} );"},
{"trigger": "_get_meta_table", "contents": "_get_meta_table(${1: ${2:\\$type}} );"},
{"trigger": "_get_non_cached_ids", "contents": "_get_non_cached_ids(${1: ${2:\\$object_ids}, ${3:\\$cache_key}} );"},
{"trigger": "_get_page_link", "contents": "_get_page_link(${1: ${2:\\$post}, ${3:\\$leavename}, ${4:\\$sample}} );"},
{"trigger": "_get_plugin_data_markup_translate", "contents": "_get_plugin_data_markup_translate(${1: ${2:\\$plugin_file}, ${3:\\$plugin_data}, ${4:\\$markup}, ${5:\\$translate}} );"},
{"trigger": "_get_random_header_data", "contents": "_get_random_header_data();"},
{"trigger": "_get_template_edit_filename", "contents": "_get_template_edit_filename(${1: ${2:\\$fullpath}, ${3:\\$containingfolder}} );"},
{"trigger": "_get_term_children", "contents": "_get_term_children(${1: ${2:\\$term_id}, ${3:\\$terms}, ${4:\\$taxonomy}} );"},
{"trigger": "_get_term_hierarchy", "contents": "_get_term_hierarchy(${1: ${2:\\$taxonomy}} );"},
{"trigger": "_get_widget_id_base", "contents": "_get_widget_id_base(${1: ${2:\\$id}} );"},
{"trigger": "_hash_hmac", "contents": "_hash_hmac(${1: ${2:\\$algo}, ${3:\\$data}, ${4:\\$key}, ${5:\\$raw_output}} );"},
{"trigger": "_http_build_query", "contents": "_http_build_query(${1: ${2:\\$data}, ${3:\\$prefix}, ${4:\\$sep}, ${5:\\$key}, ${6:\\$urlencode}} );"},
{"trigger": "_ipad_meta", "contents": "_ipad_meta();"},
{"trigger": "_is_valid_nav_menu_item", "contents": "_is_valid_nav_menu_item(${1: ${2:\\$item}} )"},
{"trigger": "_links_add_base", "contents": "_links_add_base(${1: ${2:\\$m}} );"},
{"trigger": "_links_add_target", "contents": "_links_add_target(${1: ${2:\\$m}} );"},
{"trigger": "_list_meta_row", "contents": "_list_meta_row(${1: ${2:\\$entry}, ${3:\\$count}} );"},
{"trigger": "_load_image_to_edit_path", "contents": "_load_image_to_edit_path(${1: ${2:\\$attachment_id}, ${3:\\$size}} );"},
{"trigger": "_local_storage_notice", "contents": "_local_storage_notice();"},
{"trigger": "_make_cat_compat", "contents": "_make_cat_compat(${1: ${2:\\$category}} );"},
{"trigger": "_make_email_clickable_cb", "contents": "_make_email_clickable_cb(${1: ${2:\\$matches}} );"},
{"trigger": "_make_url_clickable_cb", "contents": "_make_url_clickable_cb(${1: ${2:\\$matches}} );"},
{"trigger": "_make_web_ftp_clickable_cb", "contents": "_make_web_ftp_clickable_cb(${1: ${2:\\$matches}} );"},
{"trigger": "_maybe_update_core", "contents": "_maybe_update_core();"},
{"trigger": "_maybe_update_plugins", "contents": "_maybe_update_plugins();"},
{"trigger": "_maybe_update_themes", "contents": "_maybe_update_themes();"},
{"trigger": "_mb_substr", "contents": "_mb_substr(${1: ${2:\\$str}, ${3:\\$start}, ${4:\\$length}, ${5:\\$encoding}} );"},
{"trigger": "_mce_set_direction", "contents": "_mce_set_direction(${1: ${2:\\$input}} );"},
{"trigger": "_media_states", "contents": "_media_states(${1: ${2:\\$post}} );"},
{"trigger": "_n", "contents": "_n(${1: ${2:\\$single}, ${3:\\$plural}, ${4:\\$number}, ${5:\\$domain}} );"},
{"trigger": "_n_noop", "contents": "_n_noop(${1: ${2:\\$singular}, ${3:\\$plural}, ${4:\\$domain}} );"},
{"trigger": "_nav_menu_item_id_use_once", "contents": "_nav_menu_item_id_use_once(${1: ${2:\\$id}, ${3:\\$item}} );"},
{"trigger": "_nx", "contents": "_nx(${1: ${2:\\$single}, ${3:\\$plural}, ${4:\\$number}, ${5:\\$context}, ${6:\\$domain}} );"},
{"trigger": "_nx_noop", "contents": "_nx_noop(${1: ${2:\\$singular}, ${3:\\$plural}, ${4:\\$context}, ${5:\\$domain}} );"},
{"trigger": "_pad_term_counts", "contents": "_pad_term_counts(${1: ${2:\\$terms}, ${3:\\$taxonomy}} );"},
{"trigger": "_page_traverse_name", "contents": "_page_traverse_name(${1: ${2:\\$page_id}, ${3:\\$children}, ${4:\\$result}} );"},
{"trigger": "_post_format_get_term", "contents": "_post_format_get_term(${1: ${2:\\$term}} );"},
{"trigger": "_post_format_get_terms", "contents": "_post_format_get_terms(${1: ${2:\\$terms}, ${3:\\$taxonomies}, ${4:\\$args}} );"},
{"trigger": "_post_format_link", "contents": "_post_format_link(${1: ${2:\\$link}, ${3:\\$term}, ${4:\\$taxonomy}} );"},
{"trigger": "_post_format_request", "contents": "_post_format_request(${1: ${2:\\$qvs}} );"},
{"trigger": "_post_format_wp_get_object_terms", "contents": "_post_format_wp_get_object_terms(${1: ${2:\\$terms}} );"},
{"trigger": "_post_states", "contents": "_post_states(${1: ${2:\\$post}} );"},
{"trigger": "_post_type_meta_capabilities", "contents": "_post_type_meta_capabilities(${1: ${2:\\$capabilities}} );"},
{"trigger": "_preview_theme_stylesheet_filter", "contents": "_preview_theme_stylesheet_filter();"},
{"trigger": "_preview_theme_template_filter", "contents": "_preview_theme_template_filter();"},
{"trigger": "_prime_post_caches", "contents": "_prime_post_caches(${1: ${2:\\$ids}, ${3:\\$update_term_cache}, ${4:\\$update_meta_cache}} );"},
{"trigger": "_print_scripts", "contents": "_print_scripts();"},
{"trigger": "_print_styles", "contents": "_print_styles();"},
{"trigger": "_publish_post_hook", "contents": "_publish_post_hook(${1: ${2:\\$post_id}} );"},
{"trigger": "_register_widget_form_callback", "contents": "_register_widget_form_callback(${1: ${2:\\$id}, ${3:\\$name}, ${4:\\$form_callback}, ${5:\\$options}} );"},
{"trigger": "_register_widget_update_callback", "contents": "_register_widget_update_callback(${1: ${2:\\$id_base}, ${3:\\$update_callback}, ${4:\\$options}} );"},
{"trigger": "_relocate_children", "contents": "_relocate_children(${1: ${2:\\$old_ID}, ${3:\\$new_ID}} );"},
{"trigger": "_remove_qs_args_if_not_in_url", "contents": "_remove_qs_args_if_not_in_url(${1: ${2:\\$query_string}, ${3:\\$args_to_check}, ${4:\\$url}} );"},
{"trigger": "_remove_theme_support", "contents": "_remove_theme_support(${1: ${2:\\$feature}} );"},
{"trigger": "_reset_front_page_settings_for_post", "contents": "_reset_front_page_settings_for_post(${1: ${2:\\$post_id}} );"},
{"trigger": "_scalar_wp_die_handler", "contents": "_scalar_wp_die_handler(${1: ${2:\\$message}} );"},
{"trigger": "_search_terms_tidy", "contents": "_search_terms_tidy(${1: ${2:\\$t}} );"},
{"trigger": "_set_cron_array", "contents": "_set_cron_array(${1: ${2:\\$cron}} );"},
{"trigger": "_set_preview", "contents": "_set_preview(${1: ${2:\\$post}} );"},
{"trigger": "_show_post_preview", "contents": "_show_post_preview();"},
{"trigger": "_sort_nav_menu_items", "contents": "_sort_nav_menu_items(${1: ${2:\\$a}, ${3:\\$b}} );"},
{"trigger": "_sort_uname_callback", "contents": "_sort_uname_callback(${1: ${2:\\$a}, ${3:\\$b}} );"},
{"trigger": "_split_str_by_whitespace", "contents": "_split_str_by_whitespace(${1: ${2:\\$string}, ${3:\\$goal}} );"},
{"trigger": "_transition_post_status", "contents": "_transition_post_status(${1: ${2:\\$new_status}, ${3:\\$old_status}, ${4:\\$post}} );"},
{"trigger": "_truncate_post_slug", "contents": "_truncate_post_slug(${1: ${2:\\$slug}, ${3:\\$length}} );"},
{"trigger": "_unzip_file_pclzip", "contents": "_unzip_file_pclzip(${1: ${2:\\$file}, ${3:\\$to}, ${4:\\$needed_dirs}} );"},
{"trigger": "_unzip_file_ziparchive", "contents": "_unzip_file_ziparchive(${1: ${2:\\$file}, ${3:\\$to}, ${4:\\$needed_dirs}} );"},
{"trigger": "_update_generic_term_count", "contents": "_update_generic_term_count(${1: ${2:\\$terms}, ${3:\\$taxonomy}} );"},
{"trigger": "_update_post_term_count", "contents": "_update_post_term_count(${1: ${2:\\$terms}, ${3:\\$taxonomy}} );"},
{"trigger": "_update_term_count_on_transition_post_status", "contents": "_update_term_count_on_transition_post_status(${1: ${2:\\$new_status}, ${3:\\$old_status}, ${4:\\$post}} );"},
{"trigger": "_upgrade_cron_array", "contents": "_upgrade_cron_array(${1: ${2:\\$cron}} );"},
{"trigger": "_usort_terms_by_id", "contents": "_usort_terms_by_id(${1: ${2:\\$a}, ${3:\\$b}} );"},
{"trigger": "_usort_terms_by_name", "contents": "_usort_terms_by_name(${1: ${2:\\$a}, ${3:\\$b}} );"},
{"trigger": "_walk_bookmarks", "contents": "_walk_bookmarks(${1: ${2:\\$bookmarks}, ${3:\\$args}} );"},
{"trigger": "_wp_add_global_attributes", "contents": "_wp_add_global_attributes(${1: ${2:\\$value}} );"},
{"trigger": "_wp_admin_bar_init", "contents": "_wp_admin_bar_init();"},
{"trigger": "_wp_admin_html_begin", "contents": "_wp_admin_html_begin();"},
{"trigger": "_wp_auto_add_pages_to_menu", "contents": "_wp_auto_add_pages_to_menu(${1: ${2:\\$new_status}, ${3:\\$old_status}, ${4:\\$post}} );"},
{"trigger": "_wp_call_all_hook", "contents": "_wp_call_all_hook(${1: ${2:\\$args}} );"},
{"trigger": "_wp_customize_include", "contents": "_wp_customize_include();"},
{"trigger": "_wp_customize_loader_settings", "contents": "_wp_customize_loader_settings();"},
{"trigger": "_wp_delete_post_menu_item", "contents": "_wp_delete_post_menu_item(${1: ${2:\\$object_id}} );"},
{"trigger": "_wp_delete_tax_menu_item", "contents": "_wp_delete_tax_menu_item(${1: ${2:\\$object_id}} );"},
{"trigger": "_wp_filter_build_unique_id", "contents": "_wp_filter_build_unique_id(${1: ${2:\\$tag}, ${3:\\$function}, ${4:\\$priority}} );"},
{"trigger": "_wp_filter_taxonomy_base", "contents": "_wp_filter_taxonomy_base(${1: ${2:\\$base}} );"},
{"trigger": "_wp_footer_scripts", "contents": "_wp_footer_scripts();"},
{"trigger": "_wp_get_post_revision_version", "contents": "_wp_get_post_revision_version(${1: ${2:\\$revision}} );"},
{"trigger": "_wp_get_user_contactmethods", "contents": "_wp_get_user_contactmethods(${1: ${2:\\$user}} );"},
{"trigger": "_wp_http_get_object", "contents": "_wp_http_get_object();"},
{"trigger": "_wp_image_editor_choose", "contents": "_wp_image_editor_choose(${1: ${2:\\$args}} );"},
{"trigger": "_wp_iso_convert", "contents": "_wp_iso_convert(${1: ${2:\\$match}} );"},
{"trigger": "_wp_kses_decode_entities_chr", "contents": "_wp_kses_decode_entities_chr(${1: ${2:\\$match}} );"},
{"trigger": "_wp_kses_decode_entities_chr_hexdec", "contents": "_wp_kses_decode_entities_chr_hexdec(${1: ${2:\\$match}} );"},
{"trigger": "_wp_kses_split_callback", "contents": "_wp_kses_split_callback(${1: ${2:\\$match}} );"},
{"trigger": "_wp_link_page", "contents": "_wp_link_page(${1: ${2:\\$i}} );"},
{"trigger": "_wp_menu_item_classes_by_context", "contents": "_wp_menu_item_classes_by_context(${1: ${2:\\$menu_items}} );"},
{"trigger": "_wp_mysql_week", "contents": "_wp_mysql_week(${1: ${2:\\$column}} );"},
{"trigger": "_wp_object_count_sort_cb", "contents": "_wp_object_count_sort_cb(${1: ${2:\\$a}, ${3:\\$b}} );"},
{"trigger": "_wp_object_name_sort_cb", "contents": "_wp_object_name_sort_cb(${1: ${2:\\$a}, ${3:\\$b}} );"},
{"trigger": "_wp_post_revision_fields", "contents": "_wp_post_revision_fields(${1: ${2:\\$post}, ${3:\\$autosave}} );"},
{"trigger": "_wp_post_thumbnail_class_filter", "contents": "_wp_post_thumbnail_class_filter(${1: ${2:\\$attr}} );"},
{"trigger": "_wp_post_thumbnail_class_filter_add", "contents": "_wp_post_thumbnail_class_filter_add(${1: ${2:\\$attr}} );"},
{"trigger": "_wp_post_thumbnail_class_filter_remove", "contents": "_wp_post_thumbnail_class_filter_remove(${1: ${2:\\$attr}} );"},
{"trigger": "_wp_post_thumbnail_html", "contents": "_wp_post_thumbnail_html(${1: ${2:\\$thumbnail_id}, ${3:\\$post}} );"},
{"trigger": "_wp_preview_terms_filter", "contents": "_wp_preview_terms_filter(${1: ${2:\\$terms}, ${3:\\$post_id}, ${4:\\$taxonomy}} );"},
{"trigger": "_wp_put_post_revision", "contents": "_wp_put_post_revision(${1: ${2:\\$post}, ${3:\\$autosave}} );"},
{"trigger": "_wp_relative_upload_path", "contents": "_wp_relative_upload_path(${1: ${2:\\$path}} );"},
{"trigger": "_wp_sidebars_changed", "contents": "_wp_sidebars_changed();"},
{"trigger": "_wp_specialchars", "contents": "_wp_specialchars(${1: ${2:\\$string}, ${3:\\$quote_style}, ${4:\\$charset}, ${5:\\$double_encode}} );"},
{"trigger": "_wp_timezone_choice_usort_callback", "contents": "_wp_timezone_choice_usort_callback(${1: ${2:\\$a}, ${3:\\$b}} );"},
{"trigger": "_wp_translate_postdata", "contents": "_wp_translate_postdata(${1: ${2:\\$update}, ${3:\\$post_data}} );"},
{"trigger": "_wp_upgrade_revisions_of_post", "contents": "_wp_upgrade_revisions_of_post(${1: ${2:\\$post}, ${3:\\$revisions}} );"},
{"trigger": "_wptexturize_pushpop_element", "contents": "_wptexturize_pushpop_element(${1: ${2:\\$text}, ${3:\\$stack}, ${4:\\$disabled_elements}, ${5:\\$opening}, ${6:\\$closing}} );"},
{"trigger": "_x", "contents": "_x(${1: ${2:\\$text}, ${3:\\$context}, ${4:\\$domain}} );"},
{"trigger": "_xmlrpc_wp_die_handler", "contents": "_xmlrpc_wp_die_handler(${1: ${2:\\$message}, ${3:\\$title}, ${4:\\$args}} );"},
{"trigger": "absint", "contents": "absint(${1: ${2:\\$maybeint}} );"},
{"trigger": "activate_plugin", "contents": "activate_plugin(${1: ${2:\\$plugin}, ${3:\\$redirect}, ${4:\\$network_wide}, ${5:\\$silent}} );"},
{"trigger": "activate_plugins", "contents": "activate_plugins(${1: ${2:\\$plugins}, ${3:\\$redirect}, ${4:\\$network_wide}, ${5:\\$silent}} );"},
{"trigger": "add_action", "contents": "add_action(${1: ${2:\\$tag}, ${3:\\$function_to_add}, ${4:\\$priority}, ${5:\\$accepted_args}} );"},
{"trigger": "add_comment_meta", "contents": "add_comment_meta(${1: ${2:\\$comment_id}, ${3:\\$meta_key}, ${4:\\$meta_value}, ${5:\\$unique}} );"},
{"trigger": "add_comments_page", "contents": "add_comments_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_dashboard_page", "contents": "add_dashboard_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_editor_style", "contents": "add_editor_style(${1: ${2:\\$stylesheet}} );"},
{"trigger": "add_feed", "contents": "add_feed(${1: ${2:\\$feedname}, ${3:\\$function}} );"},
{"trigger": "add_filter", "contents": "add_filter(${1: ${2:\\$tag}, ${3:\\$function_to_add}, ${4:\\$priority}, ${5:\\$accepted_args}} );"},
{"trigger": "add_image_size", "contents": "add_image_size(${1: ${2:\\$name}, ${3:\\$width}, ${4:\\$height}, ${5:\\$crop}} );"},
{"trigger": "add_link", "contents": "add_link();"},
{"trigger": "add_links_page", "contents": "add_links_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_magic_quotes", "contents": "add_magic_quotes(${1: ${2:\\$array}} );"},
{"trigger": "add_management_page", "contents": "add_management_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_media_page", "contents": "add_media_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_menu_page", "contents": "add_menu_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}, ${7:\\$icon_url}, ${8:\\$position}} );"},
{"trigger": "add_meta", "contents": "add_meta(${1: ${2:\\$post_ID}} );"},
{"trigger": "add_meta_box", "contents": "add_meta_box(${1: ${2:\\$id}, ${3:\\$title}, ${4:\\$callback}, ${5:\\$screen}, ${6:\\$context}, ${7:\\$priority}, ${8:\\$callback_args}} );"},
{"trigger": "add_metadata", "contents": "add_metadata(${1: ${2:\\$meta_type}, ${3:\\$object_id}, ${4:\\$meta_key}, ${5:\\$meta_value}, ${6:\\$unique}} );"},
{"trigger": "add_object_page", "contents": "add_object_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}, ${7:\\$icon_url}} );"},
{"trigger": "add_option", "contents": "add_option(${1: ${2:\\$option}, ${3:\\$value}, ${4:\\$deprecated}, ${5:\\$autoload}} );"},
{"trigger": "add_option_whitelist", "contents": "add_option_whitelist(${1: ${2:\\$new_options}, ${3:\\$options}} );"},
{"trigger": "add_options_page", "contents": "add_options_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_pages_page", "contents": "add_pages_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_permastruct", "contents": "add_permastruct(${1: ${2:\\$name}, ${3:\\$struct}, ${4:\\$args}} );"},
{"trigger": "add_ping", "contents": "add_ping(${1: ${2:\\$post_id}, ${3:\\$uri}} );"},
{"trigger": "add_plugins_page", "contents": "add_plugins_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_post_meta", "contents": "add_post_meta(${1: ${2:\\$post_id}, ${3:\\$meta_key}, ${4:\\$meta_value}, ${5:\\$unique}} );"},
{"trigger": "add_post_type_support", "contents": "add_post_type_support(${1: ${2:\\$post_type}, ${3:\\$feature}} );"},
{"trigger": "add_posts_page", "contents": "add_posts_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_query_arg", "contents": "add_query_arg();"},
{"trigger": "add_rewrite_endpoint", "contents": "add_rewrite_endpoint(${1: ${2:\\$name}, ${3:\\$places}} );"},
{"trigger": "add_rewrite_rule", "contents": "add_rewrite_rule(${1: ${2:\\$regex}, ${3:\\$redirect}, ${4:\\$after}} );"},
{"trigger": "add_rewrite_tag", "contents": "add_rewrite_tag(${1: ${2:\\$tag}, ${3:\\$regex}, ${4:\\$query}} );"},
{"trigger": "add_role", "contents": "add_role(${1: ${2:\\$role}, ${3:\\$display_name}, ${4:\\$capabilities}} );"},
{"trigger": "add_screen_option", "contents": "add_screen_option(${1: ${2:\\$option}, ${3:\\$args}} );"},
{"trigger": "add_settings_error", "contents": "add_settings_error(${1: ${2:\\$setting}, ${3:\\$code}, ${4:\\$message}, ${5:\\$type}} );"},
{"trigger": "add_settings_field", "contents": "add_settings_field(${1: ${2:\\$id}, ${3:\\$title}, ${4:\\$callback}, ${5:\\$page}, ${6:\\$section}, ${7:\\$args}} );"},
{"trigger": "add_settings_section", "contents": "add_settings_section(${1: ${2:\\$id}, ${3:\\$title}, ${4:\\$callback}, ${5:\\$page}} );"},
{"trigger": "add_shortcode", "contents": "add_shortcode(${1: ${2:\\$tag}, ${3:\\$func}} );"},
{"trigger": "add_site_option", "contents": "add_site_option(${1: ${2:\\$option}, ${3:\\$value}} );"},
{"trigger": "add_submenu_page", "contents": "add_submenu_page(${1: ${2:\\$parent_slug}, ${3:\\$page_title}, ${4:\\$menu_title}, ${5:\\$capability}, ${6:\\$menu_slug}, ${7:\\$function}} );"},
{"trigger": "add_theme_page", "contents": "add_theme_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_theme_support", "contents": "add_theme_support(${1: ${2:\\$feature}} );"},
{"trigger": "add_thickbox", "contents": "add_thickbox();"},
{"trigger": "add_user", "contents": "add_user();"},
{"trigger": "add_user_meta", "contents": "add_user_meta(${1: ${2:\\$user_id}, ${3:\\$meta_key}, ${4:\\$meta_value}, ${5:\\$unique}} );"},
{"trigger": "add_users_page", "contents": "add_users_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}} );"},
{"trigger": "add_utility_page", "contents": "add_utility_page(${1: ${2:\\$page_title}, ${3:\\$menu_title}, ${4:\\$capability}, ${5:\\$menu_slug}, ${6:\\$function}, ${7:\\$icon_url}} );"},
{"trigger": "addslashes_gpc", "contents": "addslashes_gpc(${1: ${2:\\$gpc}} );"},
{"trigger": "adjacent_image_link", "contents": "adjacent_image_link(${1: ${2:\\$prev}, ${3:\\$size}, ${4:\\$text}} );"},
{"trigger": "adjacent_post_link", "contents": "adjacent_post_link(${1: ${2:\\$format}, ${3:\\$link}, ${4:\\$in_same_cat}, ${5:\\$excluded_categories}, ${6:\\$previous}} );"},
{"trigger": "adjacent_posts_rel_link", "contents": "adjacent_posts_rel_link(${1: ${2:\\$title}, ${3:\\$in_same_cat}, ${4:\\$excluded_categories}} );"},
{"trigger": "adjacent_posts_rel_link_wp_head", "contents": "adjacent_posts_rel_link_wp_head();"},
{"trigger": "admin_color_scheme_picker", "contents": "admin_color_scheme_picker();"},
{"trigger": "admin_url", "contents": "admin_url(${1: ${2:\\$path}, ${3:\\$scheme}} );"},
{"trigger": "allowed_http_request_hosts", "contents": "allowed_http_request_hosts(${1: ${2:\\$is_external}, ${3:\\$host}} );"},
{"trigger": "allowed_tags", "contents": "allowed_tags();"},
{"trigger": "antispambot", "contents": "antispambot(${1: ${2:\\$emailaddy}, ${3:\\$mailto}} );"},
{"trigger": "apache_mod_loaded", "contents": "apache_mod_loaded(${1: ${2:\\$mod}, ${3:\\$default}} );"},
{"trigger": "apply_filters", "contents": "apply_filters(${1: ${2:\\$tag}, ${3:\\$value}} );"},
{"trigger": "apply_filters_ref_array", "contents": "apply_filters_ref_array(${1: ${2:\\$tag}, ${3:\\$args}} );"},
{"trigger": "atom_enclosure", "contents": "atom_enclosure();"},
{"trigger": "attachment_submitbox_metadata", "contents": "attachment_submitbox_metadata();"},
{"trigger": "auth_redirect", "contents": "auth_redirect();"},
{"trigger": "author_can", "contents": "author_can(${1: ${2:\\$post}, ${3:\\$capability}} );"},
{"trigger": "background_color", "contents": "background_color();"},
{"trigger": "background_image", "contents": "background_image();"},
{"trigger": "backslashit", "contents": "backslashit(${1: ${2:\\$string}} );"},
{"trigger": "balancetags", "contents": "balancetags(${1: ${2:\\$text}, ${3:\\$force}} );"},
{"trigger": "before_last_bar", "contents": "before_last_bar(${1: ${2:\\$string}} );"},
{"trigger": "bloginfo", "contents": "bloginfo(${1: ${2:\\$show}} );"},
{"trigger": "bloginfo_rss", "contents": "bloginfo_rss(${1: ${2:\\$show}} );"},
{"trigger": "body_class", "contents": "body_class(${1: ${2:\\$class}} );"},
{"trigger": "bool_from_yn", "contents": "bool_from_yn(${1: ${2:\\$yn}} );"},
{"trigger": "build_query", "contents": "build_query(${1: ${2:\\$data}} );"},
{"trigger": "bulk_edit_posts", "contents": "bulk_edit_posts(${1: ${2:\\$post_data}} );"},
{"trigger": "cache_javascript_headers", "contents": "cache_javascript_headers();"},
{"trigger": "cache_users", "contents": "cache_users(${1: ${2:\\$user_ids}} );"},
{"trigger": "calendar_week_mod", "contents": "calendar_week_mod(${1: ${2:\\$num}} );"},
{"trigger": "cancel_comment_reply_link", "contents": "cancel_comment_reply_link(${1: ${2:\\$text}} );"},
{"trigger": "capital_p_dangit", "contents": "capital_p_dangit(${1: ${2:\\$text}} );"},
{"trigger": "cat_is_ancestor_of", "contents": "cat_is_ancestor_of(${1: ${2:\\$cat1}, ${3:\\$cat2}} )"},
{"trigger": "category_description", "contents": "category_description(${1: ${2:\\$category}} );"},
{"trigger": "category_exists", "contents": "category_exists(${1: ${2:\\$cat_name}, ${3:\\$parent}} )"},
{"trigger": "check_admin_referer", "contents": "check_admin_referer(${1: ${2:\\$action}, ${3:\\$query_arg}} );"},
{"trigger": "check_ajax_referer", "contents": "check_ajax_referer(${1: ${2:\\$action}, ${3:\\$query_arg}, ${4:\\$die}} );"},
{"trigger": "check_and_publish_future_post", "contents": "check_and_publish_future_post(${1: ${2:\\$post_id}} );"},
{"trigger": "check_comment", "contents": "check_comment(${1: ${2:\\$author}, ${3:\\$email}, ${4:\\$url}, ${5:\\$comment}, ${6:\\$user_ip}, ${7:\\$user_agent}, ${8:\\$comment_type}} );"},
{"trigger": "check_comment_flood_db", "contents": "check_comment_flood_db(${1: ${2:\\$ip}, ${3:\\$email}, ${4:\\$date}} );"},
{"trigger": "check_theme_switched", "contents": "check_theme_switched();"},
{"trigger": "checked", "contents": "checked(${1: ${2:\\$checked}, ${3:\\$current}, ${4:\\$echo}} );"},
{"trigger": "clean_attachment_cache", "contents": "clean_attachment_cache(${1: ${2:\\$id}, ${3:\\$clean_terms}} );"},
{"trigger": "clean_bookmark_cache", "contents": "clean_bookmark_cache(${1: ${2:\\$bookmark_id}} );"},
{"trigger": "clean_category_cache", "contents": "clean_category_cache(${1: ${2:\\$id}} );"},
{"trigger": "clean_comment_cache", "contents": "clean_comment_cache(${1: ${2:\\$ids}} );"},
{"trigger": "clean_object_term_cache", "contents": "clean_object_term_cache(${1: ${2:\\$object_ids}, ${3:\\$object_type}} );"},
{"trigger": "clean_post_cache", "contents": "clean_post_cache(${1: ${2:\\$post}} );"},
{"trigger": "clean_term_cache", "contents": "clean_term_cache(${1: ${2:\\$ids}, ${3:\\$taxonomy}, ${4:\\$clean_taxonomy}} );"},
{"trigger": "clean_user_cache", "contents": "clean_user_cache(${1: ${2:\\$user}} );"},
{"trigger": "comment_author", "contents": "comment_author(${1: ${2:\\$comment_ID}} );"},
{"trigger": "comment_author_email", "contents": "comment_author_email(${1: ${2:\\$comment_ID}} );"},
{"trigger": "comment_author_email_link", "contents": "comment_author_email_link(${1: ${2:\\$linktext}, ${3:\\$before}, ${4:\\$after}} );"},
{"trigger": "comment_author_ip", "contents": "comment_author_ip(${1: ${2:\\$comment_ID}} );"},
{"trigger": "comment_author_link", "contents": "comment_author_link(${1: ${2:\\$comment_ID}} );"},
{"trigger": "comment_author_rss", "contents": "comment_author_rss();"},
{"trigger": "comment_author_url", "contents": "comment_author_url(${1: ${2:\\$comment_ID}} );"},
{"trigger": "comment_author_url_link", "contents": "comment_author_url_link(${1: ${2:\\$linktext}, ${3:\\$before}, ${4:\\$after}} );"},
{"trigger": "comment_class", "contents": "comment_class(${1: ${2:\\$class}, ${3:\\$comment_id}, ${4:\\$post_id}, ${5:\\$echo}} );"},
{"trigger": "comment_date", "contents": "comment_date(${1: ${2:\\$d}, ${3:\\$comment_ID}} );"},
{"trigger": "comment_excerpt", "contents": "comment_excerpt(${1: ${2:\\$comment_ID}} );"},
{"trigger": "comment_exists", "contents": "comment_exists(${1: ${2:\\$comment_author}, ${3:\\$comment_date}} )"},
{"trigger": "comment_form", "contents": "comment_form(${1: ${2:\\$args}, ${3:\\$post_id}} );"},
{"trigger": "comment_form_title", "contents": "comment_form_title(${1: ${2:\\$noreplytext}, ${3:\\$replytext}, ${4:\\$linktoparent}} );"},
{"trigger": "comment_guid", "contents": "comment_guid(${1: ${2:\\$comment_id}} );"},
{"trigger": "comment_id", "contents": "comment_id();"},
{"trigger": "comment_id_fields", "contents": "comment_id_fields(${1: ${2:\\$id}} );"},
{"trigger": "comment_link", "contents": "comment_link();"},
{"trigger": "comment_reply_link", "contents": "comment_reply_link(${1: ${2:\\$args}, ${3:\\$comment}, ${4:\\$post}} );"},
{"trigger": "comment_text", "contents": "comment_text(${1: ${2:\\$comment_ID}} );"},
{"trigger": "comment_text_rss", "contents": "comment_text_rss();"},
{"trigger": "comment_time", "contents": "comment_time(${1: ${2:\\$d}} );"},
{"trigger": "comment_type", "contents": "comment_type(${1: ${2:\\$commenttxt}, ${3:\\$trackbacktxt}, ${4:\\$pingbacktxt}} );"},
{"trigger": "comments_link", "contents": "comments_link(${1: ${2:\\$deprecated}, ${3:\\$deprecated_2}} );"},
{"trigger": "comments_link_feed", "contents": "comments_link_feed();"},
{"trigger": "comments_number", "contents": "comments_number(${1: ${2:\\$zero}, ${3:\\$one}, ${4:\\$more}, ${5:\\$deprecated}} );"},
{"trigger": "comments_open", "contents": "comments_open(${1: ${2:\\$post_id}} )"},
{"trigger": "comments_popup_link", "contents": "comments_popup_link(${1: ${2:\\$zero}, ${3:\\$one}, ${4:\\$more}, ${5:\\$css_class}, ${6:\\$none}} );"},
{"trigger": "comments_popup_script", "contents": "comments_popup_script(${1: ${2:\\$width}, ${3:\\$height}, ${4:\\$file}} );"},
{"trigger": "comments_template", "contents": "comments_template(${1: ${2:\\$file}, ${3:\\$separate_comments}} );"},
{"trigger": "compression_test", "contents": "compression_test();"},
{"trigger": "content_url", "contents": "content_url(${1: ${2:\\$path}} );"},
{"trigger": "convert_chars", "contents": "convert_chars(${1: ${2:\\$content}, ${3:\\$deprecated}} );"},
{"trigger": "convert_smilies", "contents": "convert_smilies(${1: ${2:\\$text}} );"},
{"trigger": "convert_to_screen", "contents": "convert_to_screen(${1: ${2:\\$hook_name}} );"},
{"trigger": "copy_dir", "contents": "copy_dir(${1: ${2:\\$from}, ${3:\\$to}, ${4:\\$skip_list}} );"},
{"trigger": "core_update_footer", "contents": "core_update_footer(${1: ${2:\\$msg}} );"},
{"trigger": "count_many_users_posts", "contents": "count_many_users_posts(${1: ${2:\\$users}, ${3:\\$post_type}, ${4:\\$public_only}} );"},
{"trigger": "count_user_posts", "contents": "count_user_posts(${1: ${2:\\$userid}} );"},
{"trigger": "count_users", "contents": "count_users(${1: ${2:\\$strategy}} );"},
{"trigger": "create_initial_post_types", "contents": "create_initial_post_types();"},
{"trigger": "create_initial_taxonomies", "contents": "create_initial_taxonomies();"},
{"trigger": "current_filter", "contents": "current_filter();"},
{"trigger": "current_theme_supports", "contents": "current_theme_supports(${1: ${2:\\$feature}} );"},
{"trigger": "current_time", "contents": "current_time(${1: ${2:\\$type}, ${3:\\$gmt}} );"},
{"trigger": "current_user_can", "contents": "current_user_can(${1: ${2:\\$capability}} );"},
{"trigger": "current_user_can_for_blog", "contents": "current_user_can_for_blog(${1: ${2:\\$blog_id}, ${3:\\$capability}} );"},
{"trigger": "date_i18n", "contents": "date_i18n(${1: ${2:\\$dateformatstring}, ${3:\\$unixtimestamp}, ${4:\\$gmt}} );"},
{"trigger": "deactivate_plugins", "contents": "deactivate_plugins(${1: ${2:\\$plugins}, ${3:\\$silent}, ${4:\\$network_wide}} );"},
{"trigger": "dead_db", "contents": "dead_db();"},
{"trigger": "default_password_nag", "contents": "default_password_nag();"},
{"trigger": "default_password_nag_edit_user", "contents": "default_password_nag_edit_user(${1: ${2:\\$user_ID}, ${3:\\$old_data}} );"},
{"trigger": "default_password_nag_handler", "contents": "default_password_nag_handler(${1: ${2:\\$errors}} );"},
{"trigger": "default_topic_count_scale", "contents": "default_topic_count_scale(${1: ${2:\\$count}} );"},
{"trigger": "default_topic_count_text", "contents": "default_topic_count_text(${1: ${2:\\$count}} );"},
{"trigger": "delete_all_user_settings", "contents": "delete_all_user_settings();"},
{"trigger": "delete_comment_meta", "contents": "delete_comment_meta(${1: ${2:\\$comment_id}, ${3:\\$meta_key}, ${4:\\$meta_value}} );"},
{"trigger": "delete_get_calendar_cache", "contents": "delete_get_calendar_cache();"},
{"trigger": "delete_meta", "contents": "delete_meta(${1: ${2:\\$mid}} );"},
{"trigger": "delete_metadata", "contents": "delete_metadata(${1: ${2:\\$meta_type}, ${3:\\$object_id}, ${4:\\$meta_key}, ${5:\\$meta_value}, ${6:\\$delete_all}} );"},
{"trigger": "delete_metadata_by_mid", "contents": "delete_metadata_by_mid(${1: ${2:\\$meta_type}, ${3:\\$meta_id}} );"},
{"trigger": "delete_option", "contents": "delete_option(${1: ${2:\\$option}} );"},
{"trigger": "delete_plugins", "contents": "delete_plugins(${1: ${2:\\$plugins}, ${3:\\$redirect}} );"},
{"trigger": "delete_post_meta", "contents": "delete_post_meta(${1: ${2:\\$post_id}, ${3:\\$meta_key}, ${4:\\$meta_value}} );"},
{"trigger": "delete_post_meta_by_key", "contents": "delete_post_meta_by_key(${1: ${2:\\$post_meta_key}} );"},
{"trigger": "delete_post_thumbnail", "contents": "delete_post_thumbnail(${1: ${2:\\$post}} );"},
{"trigger": "delete_site_option", "contents": "delete_site_option(${1: ${2:\\$option}} );"},
{"trigger": "delete_site_transient", "contents": "delete_site_transient(${1: ${2:\\$transient}} );"},
{"trigger": "delete_theme", "contents": "delete_theme(${1: ${2:\\$stylesheet}, ${3:\\$redirect}} );"},
{"trigger": "delete_transient", "contents": "delete_transient(${1: ${2:\\$transient}} );"},
{"trigger": "delete_user_meta", "contents": "delete_user_meta(${1: ${2:\\$user_id}, ${3:\\$meta_key}, ${4:\\$meta_value}} );"},
{"trigger": "delete_user_option", "contents": "delete_user_option(${1: ${2:\\$user_id}, ${3:\\$option_name}, ${4:\\$global}} );"},
{"trigger": "delete_user_setting", "contents": "delete_user_setting(${1: ${2:\\$names}} );"},
{"trigger": "did_action", "contents": "did_action(${1: ${2:\\$tag}} );"},
{"trigger": "disabled", "contents": "disabled(${1: ${2:\\$disabled}, ${3:\\$current}, ${4:\\$echo}} );"},
{"trigger": "discover_pingback_server_uri", "contents": "discover_pingback_server_uri(${1: ${2:\\$url}, ${3:\\$deprecated}} );"},
{"trigger": "dismiss_core_update", "contents": "dismiss_core_update(${1: ${2:\\$update}} );"},
{"trigger": "display_header_text", "contents": "display_header_text();"},
{"trigger": "do_accordion_sections", "contents": "do_accordion_sections(${1: ${2:\\$screen}, ${3:\\$context}, ${4:\\$object}} );"},
{"trigger": "do_action", "contents": "do_action(${1: ${2:\\$tag}, ${3:\\$arg}} );"},
{"trigger": "do_action_ref_array", "contents": "do_action_ref_array(${1: ${2:\\$tag}, ${3:\\$args}} );"},
{"trigger": "do_all_pings", "contents": "do_all_pings();"},
{"trigger": "do_enclose", "contents": "do_enclose(${1: ${2:\\$content}, ${3:\\$post_ID}} );"},
{"trigger": "do_feed", "contents": "do_feed();"},
{"trigger": "do_feed_atom", "contents": "do_feed_atom(${1: ${2:\\$for_comments}} );"},
{"trigger": "do_feed_rdf", "contents": "do_feed_rdf();"},
{"trigger": "do_feed_rss", "contents": "do_feed_rss();"},
{"trigger": "do_feed_rss2", "contents": "do_feed_rss2(${1: ${2:\\$for_comments}} );"},
{"trigger": "do_meta_boxes", "contents": "do_meta_boxes(${1: ${2:\\$screen}, ${3:\\$context}, ${4:\\$object}} );"},
{"trigger": "do_robots", "contents": "do_robots();"},
{"trigger": "do_settings_fields", "contents": "do_settings_fields(${1: ${2:\\$page}, ${3:\\$section}} );"},
{"trigger": "do_settings_sections", "contents": "do_settings_sections(${1: ${2:\\$page}} );"},
{"trigger": "do_shortcode", "contents": "do_shortcode(${1: ${2:\\$content}} );"},
{"trigger": "do_shortcode_tag", "contents": "do_shortcode_tag(${1: ${2:\\$m}} );"},
{"trigger": "do_trackbacks", "contents": "do_trackbacks(${1: ${2:\\$post_id}} );"},
{"trigger": "download_url", "contents": "download_url(${1: ${2:\\$url}, ${3:\\$timeout}} );"},
{"trigger": "dynamic_sidebar", "contents": "dynamic_sidebar(${1: ${2:\\$index}} );"},
{"trigger": "edit_bookmark_link", "contents": "edit_bookmark_link(${1: ${2:\\$link}, ${3:\\$before}, ${4:\\$after}, ${5:\\$bookmark}} );"},
{"trigger": "edit_comment", "contents": "edit_comment();"},
{"trigger": "edit_comment_link", "contents": "edit_comment_link(${1: ${2:\\$link}, ${3:\\$before}, ${4:\\$after}} );"},
{"trigger": "edit_form_image_editor", "contents": "edit_form_image_editor(${1: ${2:\\$post}} );"},
{"trigger": "edit_link", "contents": "edit_link(${1: ${2:\\$link_id}} );"},
{"trigger": "edit_post", "contents": "edit_post(${1: ${2:\\$post_data}} );"},
{"trigger": "edit_post_link", "contents": "edit_post_link(${1: ${2:\\$link}, ${3:\\$before}, ${4:\\$after}, ${5:\\$id}} );"},
{"trigger": "edit_tag_link", "contents": "edit_tag_link(${1: ${2:\\$link}, ${3:\\$before}, ${4:\\$after}, ${5:\\$tag}} );"},
{"trigger": "edit_term_link", "contents": "edit_term_link(${1: ${2:\\$link}, ${3:\\$before}, ${4:\\$after}, ${5:\\$term}, ${6:\\$echo}} );"},
{"trigger": "edit_user", "contents": "edit_user(${1: ${2:\\$user_id}} );"},
{"trigger": "email_exists", "contents": "email_exists(${1: ${2:\\$email}} )"},
{"trigger": "enqueue_comment_hotkeys_js", "contents": "enqueue_comment_hotkeys_js();"},
{"trigger": "ent2ncr", "contents": "ent2ncr(${1: ${2:\\$text}} );"},
{"trigger": "esc_attr", "contents": "esc_attr(${1: ${2:\\$text}} );"},
{"trigger": "esc_attr__", "contents": "esc_attr__(${1: ${2:\\$text}, ${3:\\$domain}} );"},
{"trigger": "esc_attr_e", "contents": "esc_attr_e(${1: ${2:\\$text}, ${3:\\$domain}} );"},
{"trigger": "esc_attr_x", "contents": "esc_attr_x(${1: ${2:\\$single}, ${3:\\$context}, ${4:\\$domain}} );"},
{"trigger": "esc_html", "contents": "esc_html(${1: ${2:\\$text}} );"},
{"trigger": "esc_html__", "contents": "esc_html__(${1: ${2:\\$text}, ${3:\\$domain}} );"},
{"trigger": "esc_html_e", "contents": "esc_html_e(${1: ${2:\\$text}, ${3:\\$domain}} );"},
{"trigger": "esc_html_x", "contents": "esc_html_x(${1: ${2:\\$single}, ${3:\\$context}, ${4:\\$domain}} );"},
{"trigger": "esc_js", "contents": "esc_js(${1: ${2:\\$text}} );"},
{"trigger": "esc_sql", "contents": "esc_sql(${1: ${2:\\$data}} );"},
{"trigger": "esc_textarea", "contents": "esc_textarea(${1: ${2:\\$text}} );"},
{"trigger": "esc_url", "contents": "esc_url(${1: ${2:\\$url}, ${3:\\$protocols}, ${4:\\$_context}} );"},
{"trigger": "esc_url_raw", "contents": "esc_url_raw(${1: ${2:\\$url}, ${3:\\$protocols}} );"},
{"trigger": "extract_from_markers", "contents": "extract_from_markers(${1: ${2:\\$filename}, ${3:\\$marker}} );"},
{"trigger": "feed_content_type", "contents": "feed_content_type(${1: ${2:\\$type}} );"},
{"trigger": "feed_links", "contents": "feed_links(${1: ${2:\\$args}} );"},
{"trigger": "feed_links_extra", "contents": "feed_links_extra(${1: ${2:\\$args}} );"},
{"trigger": "fetch_feed", "contents": "fetch_feed(${1: ${2:\\$url}} );"},
{"trigger": "file_is_displayable_image", "contents": "file_is_displayable_image(${1: ${2:\\$path}} )"},
{"trigger": "file_is_valid_image", "contents": "file_is_valid_image(${1: ${2:\\$path}} )"},
{"trigger": "find_core_auto_update", "contents": "find_core_auto_update( ${1:} );"},
{"trigger": "find_core_update", "contents": "find_core_update(${1: ${2:\\$version}, ${3:\\$locale}} );"},
{"trigger": "find_posts_div", "contents": "find_posts_div(${1: ${2:\\$found_action}} );"},
{"trigger": "floated_admin_avatar", "contents": "floated_admin_avatar(${1: ${2:\\$name}} );"},
{"trigger": "flush_rewrite_rules", "contents": "flush_rewrite_rules(${1: ${2:\\$hard}} );"},
{"trigger": "force_balance_tags", "contents": "force_balance_tags(${1: ${2:\\$text}} );"},
{"trigger": "force_ssl_admin", "contents": "force_ssl_admin(${1: ${2:\\$force}} );"},
{"trigger": "force_ssl_login", "contents": "force_ssl_login(${1: ${2:\\$force}} );"},
{"trigger": "form_option", "contents": "form_option(${1: ${2:\\$option}} );"},
{"trigger": "format_to_edit", "contents": "format_to_edit(${1: ${2:\\$content}, ${3:\\$richedit}} );"},
{"trigger": "format_to_post", "contents": "format_to_post(${1: ${2:\\$content}} );"},
{"trigger": "gallery_shortcode", "contents": "gallery_shortcode(${1: ${2:\\$attr}} );"},
{"trigger": "generic_ping", "contents": "generic_ping(${1: ${2:\\$post_id}} );"},
{"trigger": "get_404_template", "contents": "get_404_template();"},
{"trigger": "get_adjacent_post", "contents": "get_adjacent_post(${1: ${2:\\$in_same_cat}, ${3:\\$excluded_categories}, ${4:\\$previous}} );"},
{"trigger": "get_adjacent_post_link(", "contents": "get_adjacent_post_link((${1: ${2:\\$format}, ${3:\\$in_same_cat = false}, ${4:\\$previous}} );"},
{"trigger": "get_adjacent_post_rel_link", "contents": "get_adjacent_post_rel_link(${1: ${2:\\$title}, ${3:\\$in_same_cat}, ${4:\\$excluded_categories = ''}, ${5:\\$previous = true}} );"},
{"trigger": "get_admin_page_parent", "contents": "get_admin_page_parent(${1: ${2:\\$parent}} );"},
{"trigger": "get_admin_page_title", "contents": "get_admin_page_title();"},
{"trigger": "get_admin_url", "contents": "get_admin_url(${1: ${2:\\$blog_id}, ${3:\\$path}, ${4:\\$scheme}} );"},
{"trigger": "get_all_category_ids", "contents": "get_all_category_ids();"},
{"trigger": "get_all_page_ids", "contents": "get_all_page_ids();"},
{"trigger": "get_all_post_type_supports", "contents": "get_all_post_type_supports(${1: ${2:\\$post_type}} );"},
{"trigger": "get_all_user_settings", "contents": "get_all_user_settings();"},
{"trigger": "get_allowed_http_origins", "contents": "get_allowed_http_origins();"},
{"trigger": "get_allowed_mime_types", "contents": "get_allowed_mime_types();"},
{"trigger": "get_ancestors", "contents": "get_ancestors(${1: ${2:\\$object_id}, ${3:\\$object_type}} );"},
{"trigger": "get_approved_comments", "contents": "get_approved_comments(${1: ${2:\\$post_id}} );"},
{"trigger": "get_archive_template", "contents": "get_archive_template();"},
{"trigger": "get_archives_link", "contents": "get_archives_link(${1: ${2:\\$url}, ${3:\\$text}, ${4:\\$format}, ${5:\\$before}, ${6:\\$after}} );"},
{"trigger": "get_attached_file", "contents": "get_attached_file(${1: ${2:\\$attachment_id}, ${3:\\$unfiltered}} );"},
{"trigger": "get_attached_media", "contents": "get_attached_media(${1: ${2:\\$type}, ${3:\\$post}} );"},
{"trigger": "get_attachment_fields_to_edit", "contents": "get_attachment_fields_to_edit(${1: ${2:\\$post}, ${3:\\$errors}} );"},
{"trigger": "get_attachment_link", "contents": "get_attachment_link(${1: ${2:\\$post}, ${3:\\$leavename}} );"},
{"trigger": "get_attachment_taxonomies", "contents": "get_attachment_taxonomies(${1: ${2:\\$attachment}} );"},
{"trigger": "get_attachment_template", "contents": "get_attachment_template();"},
{"trigger": "get_author_feed_link", "contents": "get_author_feed_link(${1: ${2:\\$author_id}, ${3:\\$feed}} );"},
{"trigger": "get_author_posts_url", "contents": "get_author_posts_url(${1: ${2:\\$author_id}, ${3:\\$author_nicename}} );"},
{"trigger": "get_author_template", "contents": "get_author_template();"},
{"trigger": "get_available_languages", "contents": "get_available_languages(${1: ${2:\\$dir}} );"},
{"trigger": "get_available_post_mime_types", "contents": "get_available_post_mime_types(${1: ${2:\\$type}} );"},
{"trigger": "get_available_post_statuses", "contents": "get_available_post_statuses(${1: ${2:\\$type}} );"},
{"trigger": "get_avatar", "contents": "get_avatar(${1: ${2:\\$id_or_email}, ${3:\\$size}, ${4:\\$default}, ${5:\\$alt}} );"},
{"trigger": "get_background_color", "contents": "get_background_color();"},
{"trigger": "get_background_image", "contents": "get_background_image();"},
{"trigger": "get_bloginfo", "contents": "get_bloginfo(${1: ${2:\\$show}, ${3:\\$filter}} );"},
{"trigger": "get_bloginfo_rss", "contents": "get_bloginfo_rss(${1: ${2:\\$show}} );"},
{"trigger": "get_blogs_of_user", "contents": "get_blogs_of_user(${1: ${2:\\$user_id}, ${3:\\$all}} );"},
{"trigger": "get_body_class", "contents": "get_body_class(${1: ${2:\\$class}} );"},
{"trigger": "get_bookmark", "contents": "get_bookmark(${1: ${2:\\$bookmark}, ${3:\\$output}, ${4:\\$filter}} );"},
{"trigger": "get_bookmark_field", "contents": "get_bookmark_field(${1: ${2:\\$field}, ${3:\\$bookmark}, ${4:\\$context}} );"},
{"trigger": "get_bookmarks", "contents": "get_bookmarks(${1: ${2:\\$args}} );"},
{"trigger": "get_boundary_post", "contents": "get_boundary_post(${1: ${2:\\$in_same_cat}, ${3:\\$excluded_categories}, ${4:\\$start}} );"},
{"trigger": "get_calendar", "contents": "get_calendar(${1: ${2:\\$initial}, ${3:\\$echo}} );"},
{"trigger": "get_cancel_comment_reply_link", "contents": "get_cancel_comment_reply_link(${1: ${2:\\$text}} );"},
{"trigger": "get_cat_id", "contents": "get_cat_id(${1: ${2:\\$cat_name}} );"},
{"trigger": "get_cat_name", "contents": "get_cat_name(${1: ${2:\\$cat_id}} );"},
{"trigger": "get_categories", "contents": "get_categories(${1: ${2:\\$args}} );"},
{"trigger": "get_category", "contents": "get_category(${1: ${2:\\$category}, ${3:\\$output}, ${4:\\$filter}} );"},
{"trigger": "get_category_by_path", "contents": "get_category_by_path(${1: ${2:\\$category_path}, ${3:\\$full_match}, ${4:\\$output}} );"},
{"trigger": "get_category_by_slug", "contents": "get_category_by_slug(${1: ${2:\\$slug}} );"},
{"trigger": "get_category_feed_link", "contents": "get_category_feed_link(${1: ${2:\\$cat_id}, ${3:\\$feed}} );"},
{"trigger": "get_category_link", "contents": "get_category_link(${1: ${2:\\$category}} );"},
{"trigger": "get_category_parents", "contents": "get_category_parents(${1: ${2:\\$id}, ${3:\\$link}, ${4:\\$separator}, ${5:\\$nicename}, ${6:\\$visited}} );"},
{"trigger": "get_category_template", "contents": "get_category_template();"},
{"trigger": "get_category_to_edit", "contents": "get_category_to_edit(${1: ${2:\\$id}} );"},
{"trigger": "get_children", "contents": "get_children(${1: ${2:\\$args}, ${3:\\$output}} );"},
{"trigger": "get_column_headers", "contents": "get_column_headers(${1: ${2:\\$screen}} );"},
{"trigger": "get_comment", "contents": "get_comment(${1: ${2:\\$comment}, ${3:\\$output}} );"},
{"trigger": "get_comment_author", "contents": "get_comment_author(${1: ${2:\\$comment_ID}} );"},
{"trigger": "get_comment_author_email", "contents": "get_comment_author_email(${1: ${2:\\$comment_ID}} );"},
{"trigger": "get_comment_author_email_link", "contents": "get_comment_author_email_link(${1: ${2:\\$linktext}, ${3:\\$before}, ${4:\\$after}} );"},
{"trigger": "get_comment_author_ip", "contents": "get_comment_author_ip(${1: ${2:\\$comment_ID}} );"},
{"trigger": "get_comment_author_link", "contents": "get_comment_author_link(${1: ${2:\\$comment_ID}} );"},
{"trigger": "get_comment_author_rss", "contents": "get_comment_author_rss();"},
{"trigger": "get_comment_author_url", "contents": "get_comment_author_url(${1: ${2:\\$comment_ID}} );"},
{"trigger": "get_comment_author_url_link", "contents": "get_comment_author_url_link(${1: ${2:\\$linktext}, ${3:\\$before}, ${4:\\$after}} );"},
{"trigger": "get_comment_class", "contents": "get_comment_class(${1: ${2:\\$class}, ${3:\\$comment_id}, ${4:\\$post_id}} );"},
{"trigger": "get_comment_count", "contents": "get_comment_count(${1: ${2:\\$post_id}} );"},
{"trigger": "get_comment_date", "contents": "get_comment_date(${1: ${2:\\$d}, ${3:\\$comment_ID}} );"},
{"trigger": "get_comment_excerpt", "contents": "get_comment_excerpt(${1: ${2:\\$comment_ID}} );"},
{"trigger": "get_comment_guid", "contents": "get_comment_guid(${1: ${2:\\$comment_id}} );"},
{"trigger": "get_comment_id", "contents": "get_comment_id();"},
{"trigger": "get_comment_id_fields", "contents": "get_comment_id_fields(${1: ${2:\\$id}} );"},
{"trigger": "get_comment_link", "contents": "get_comment_link(${1: ${2:\\$comment}, ${3:\\$args}} );"},
{"trigger": "get_comment_meta", "contents": "get_comment_meta(${1: ${2:\\$comment_id}, ${3:\\$key}, ${4:\\$single}} );"},
{"trigger": "get_comment_pages_count", "contents": "get_comment_pages_count(${1: ${2:\\$comments}, ${3:\\$per_page}, ${4:\\$threaded}} );"},
{"trigger": "get_comment_reply_link", "contents": "get_comment_reply_link(${1: ${2:\\$args}, ${3:\\$comment}, ${4:\\$post}} );"},
{"trigger": "get_comment_statuses", "contents": "get_comment_statuses();"},
{"trigger": "get_comment_text", "contents": "get_comment_text(${1: ${2:\\$comment_ID}} );"},
{"trigger": "get_comment_time", "contents": "get_comment_time(${1: ${2:\\$d}, ${3:\\$gmt}, ${4:\\$translate}} );"},
{"trigger": "get_comment_to_edit", "contents": "get_comment_to_edit(${1: ${2:\\$id}} );"},
{"trigger": "get_comment_type", "contents": "get_comment_type(${1: ${2:\\$comment_ID}} );"},
{"trigger": "get_comments", "contents": "get_comments(${1: ${2:\\$args}} );"},
{"trigger": "get_comments_link", "contents": "get_comments_link(${1: ${2:\\$post_id}} );"},
{"trigger": "get_comments_number", "contents": "get_comments_number(${1: ${2:\\$post_id}} );"},
{"trigger": "get_comments_pagenum_link", "contents": "get_comments_pagenum_link(${1: ${2:\\$pagenum}, ${3:\\$max_page}} );"},
{"trigger": "get_comments_popup_template", "contents": "get_comments_popup_template();"},
{"trigger": "get_compat_media_markup", "contents": "get_compat_media_markup(${1: ${2:\\$attachment_id}, ${3:\\$args}} );"},
{"trigger": "get_core_checksums", "contents": "get_core_checksums(${1: ${2:\\$options}} );"},
{"trigger": "get_core_updates", "contents": "get_core_updates(${1: ${2:\\$version}, ${3:\\$locale}} );"},
{"trigger": "get_current_blog_id", "contents": "get_current_blog_id();"},
{"trigger": "get_current_screen", "contents": "get_current_screen();"},
{"trigger": "get_current_user_id", "contents": "get_current_user_id();"},
{"trigger": "get_currentuserinfo", "contents": "get_currentuserinfo();"},
{"trigger": "get_custom_header", "contents": "get_custom_header();"},
{"trigger": "get_dashboard_url", "contents": "get_dashboard_url(${1: ${2:\\$user_id}, ${3:\\$path}, ${4:\\$scheme}} );"},
{"trigger": "get_date_from_gmt", "contents": "get_date_from_gmt(${1: ${2:\\$string}, ${3:\\$format}} );"},
{"trigger": "get_date_template", "contents": "get_date_template();"},
{"trigger": "get_day_link", "contents": "get_day_link(${1: ${2:\\$year}, ${3:\\$month}, ${4:\\$day}} );"},
{"trigger": "get_default_feed", "contents": "get_default_feed();"},
{"trigger": "get_default_link_to_edit", "contents": "get_default_link_to_edit();"},
{"trigger": "get_default_post_to_edit", "contents": "get_default_post_to_edit(${1: ${2:\\$post_type}, ${3:\\$create_in_db}} );"},
{"trigger": "get_delete_post_link", "contents": "get_delete_post_link(${1: ${2:\\$id}, ${3:\\$deprecated}, ${4:\\$force_delete}} );"},
{"trigger": "get_dropins", "contents": "get_dropins();"},
{"trigger": "get_edit_bookmark_link", "contents": "get_edit_bookmark_link(${1: ${2:\\$link}} );"},
{"trigger": "get_edit_comment_link", "contents": "get_edit_comment_link(${1: ${2:\\$comment_id}} );"},
{"trigger": "get_edit_post_link", "contents": "get_edit_post_link(${1: ${2:\\$id}, ${3:\\$context}} );"},
{"trigger": "get_edit_profile_url", "contents": "get_edit_profile_url(${1: ${2:\\$user}, ${3:\\$scheme}} );"},
{"trigger": "get_edit_tag_link", "contents": "get_edit_tag_link(${1: ${2:\\$tag_id}, ${3:\\$taxonomy}} );"},
{"trigger": "get_edit_term_link", "contents": "get_edit_term_link(${1: ${2:\\$term_id}, ${3:\\$taxonomy}, ${4:\\$object_type}} );"},
{"trigger": "get_edit_user_link", "contents": "get_edit_user_link(${1: ${2:\\$user_id}} );"},
{"trigger": "get_editable_roles", "contents": "get_editable_roles();"},
{"trigger": "get_enclosed", "contents": "get_enclosed(${1: ${2:\\$post_id}} );"},
{"trigger": "get_extended", "contents": "get_extended(${1: ${2:\\$post}} );"},
{"trigger": "get_feed_link", "contents": "get_feed_link(${1: ${2:\\$feed}} );"},
{"trigger": "get_file_data", "contents": "get_file_data(${1: ${2:\\$file}, ${3:\\$default_headers}, ${4:\\$context}} );"},
{"trigger": "get_file_description", "contents": "get_file_description(${1: ${2:\\$file}} );"},
{"trigger": "get_filesystem_method", "contents": "get_filesystem_method(${1: ${2:\\$args}, ${3:\\$context}} );"},
{"trigger": "get_footer", "contents": "get_footer(${1: ${2:\\$name}} );"},
{"trigger": "get_front_page_template", "contents": "get_front_page_template();"},
{"trigger": "get_gmt_from_date", "contents": "get_gmt_from_date(${1: ${2:\\$string}, ${3:\\$format}} );"},
{"trigger": "get_header", "contents": "get_header(${1: ${2:\\$name}} );"},
{"trigger": "get_header_image", "contents": "get_header_image();"},
{"trigger": "get_header_textcolor", "contents": "get_header_textcolor();"},
{"trigger": "get_hidden_columns", "contents": "get_hidden_columns(${1: ${2:\\$screen}} );"},
{"trigger": "get_hidden_meta_boxes", "contents": "get_hidden_meta_boxes(${1: ${2:\\$screen}} );"},
{"trigger": "get_home_path", "contents": "get_home_path();"},
{"trigger": "get_home_template", "contents": "get_home_template();"},
{"trigger": "get_home_url", "contents": "get_home_url(${1: ${2:\\$blog_id}, ${3:\\$path}, ${4:\\$scheme}} );"},
{"trigger": "get_http_origin", "contents": "get_http_origin();"},
{"trigger": "get_image_send_to_editor", "contents": "get_image_send_to_editor(${1: ${2:\\$id}, ${3:\\$caption}, ${4:\\$title}, ${5:\\$align}, ${6:\\$url}, ${7:\\$rel}, ${8:\\$size}, ${9:\\$alt}} );"},
{"trigger": "get_image_tag", "contents": "get_image_tag(${1: ${2:\\$id}, ${3:\\$alt}, ${4:\\$title}, ${5:\\$align}, ${6:\\$size}} );"},
{"trigger": "get_importers", "contents": "get_importers();"},
{"trigger": "get_index_template", "contents": "get_index_template();"},
{"trigger": "get_inline_data", "contents": "get_inline_data(${1: ${2:\\$post}} );"},
{"trigger": "get_intermediate_image_sizes", "contents": "get_intermediate_image_sizes();"},
{"trigger": "get_lastcommentmodified", "contents": "get_lastcommentmodified(${1: ${2:\\$timezone}} );"},
{"trigger": "get_lastpostdate", "contents": "get_lastpostdate(${1: ${2:\\$timezone}} );"},
{"trigger": "get_lastpostmodified", "contents": "get_lastpostmodified(${1: ${2:\\$timezone}} );"},
{"trigger": "get_link_to_edit", "contents": "get_link_to_edit(${1: ${2:\\$link_id}} );"},
{"trigger": "get_locale", "contents": "get_locale();"},
{"trigger": "get_locale_stylesheet_uri", "contents": "get_locale_stylesheet_uri();"},
{"trigger": "get_media_embedded_in_content", "contents": "get_media_embedded_in_content(${1: ${2:\\$content}, ${3:\\$types}} );"},
{"trigger": "get_media_item", "contents": "get_media_item(${1: ${2:\\$attachment_id}, ${3:\\$args}} );"},
{"trigger": "get_media_items", "contents": "get_media_items(${1: ${2:\\$post_id}, ${3:\\$errors}} );"},
{"trigger": "get_meta_keys", "contents": "get_meta_keys();"},
{"trigger": "get_meta_sql", "contents": "get_meta_sql(${1: ${2:\\$meta_query}, ${3:\\$type}, ${4:\\$primary_table}, ${5:\\$primary_id_column}, ${6:\\$context}} );"},
{"trigger": "get_metadata", "contents": "get_metadata(${1: ${2:\\$meta_type}, ${3:\\$object_id}, ${4:\\$meta_key}, ${5:\\$single}} );"},
{"trigger": "get_metadata_by_mid", "contents": "get_metadata_by_mid(${1: ${2:\\$meta_type}, ${3:\\$meta_id}} );"},
{"trigger": "get_month_link", "contents": "get_month_link(${1: ${2:\\$year}, ${3:\\$month}} );"},
{"trigger": "get_mu_plugins", "contents": "get_mu_plugins();"},
{"trigger": "get_nav_menu_locations", "contents": "get_nav_menu_locations();"},
{"trigger": "get_next_comments_link", "contents": "get_next_comments_link(${1: ${2:\\$label}, ${3:\\$max_page}} );"},
{"trigger": "get_next_post", "contents": "get_next_post(${1: ${2:\\$in_same_cat}, ${3:\\$excluded_categories}} );"},
{"trigger": "get_next_post_link", "contents": "get_next_post_link(${1: ${2:\\$format = '« %link'}, ${3:\\$link = '\\%title'}, ${4:\\$in_same_cat = false}, ${5:\\$excluded_categories = ''}} );"},
{"trigger": "get_next_posts_link", "contents": "get_next_posts_link(${1: ${2:\\$label}, ${3:\\$max_page}} );"},
{"trigger": "get_next_posts_page_link", "contents": "get_next_posts_page_link(${1: ${2:\\$max_page}} );"},
{"trigger": "get_num_queries", "contents": "get_num_queries();"},
{"trigger": "get_object_taxonomies", "contents": "get_object_taxonomies(${1: ${2:\\$object}, ${3:\\$output}} );"},
{"trigger": "get_object_term_cache", "contents": "get_object_term_cache(${1: ${2:\\$id}, ${3:\\$taxonomy}} );"},
{"trigger": "get_objects_in_term", "contents": "get_objects_in_term(${1: ${2:\\$term_ids}, ${3:\\$taxonomies}, ${4:\\$args}} );"},
{"trigger": "get_option", "contents": "get_option(${1: ${2:\\$option}, ${3:\\$default}} );"},
{"trigger": "get_page", "contents": "get_page(${1: ${2:\\$page}, ${3:\\$output}, ${4:\\$filter}} );"},
{"trigger": "get_page_by_path", "contents": "get_page_by_path(${1: ${2:\\$page_path}, ${3:\\$output}, ${4:\\$post_type}} );"},
{"trigger": "get_page_by_title", "contents": "get_page_by_title(${1: ${2:\\$page_title}, ${3:\\$output}, ${4:\\$post_type}} );"},
{"trigger": "get_page_children", "contents": "get_page_children(${1: ${2:\\$page_id}, ${3:\\$pages}} );"},
{"trigger": "get_page_hierarchy", "contents": "get_page_hierarchy(${1: ${2:\\$pages}, ${3:\\$page_id}} );"},
{"trigger": "get_page_link", "contents": "get_page_link(${1: ${2:\\$post}, ${3:\\$leavename}, ${4:\\$sample}} );"},
{"trigger": "get_page_of_comment", "contents": "get_page_of_comment(${1: ${2:\\$comment_ID}, ${3:\\$args}} );"},
{"trigger": "get_page_statuses", "contents": "get_page_statuses();"},
{"trigger": "get_page_template", "contents": "get_page_template();"},
{"trigger": "get_page_template_slug", "contents": "get_page_template_slug(${1: ${2:\\$post_id}} );"},
{"trigger": "get_page_templates", "contents": "get_page_templates();"},
{"trigger": "get_page_uri", "contents": "get_page_uri(${1: ${2:\\$page}} );"},
{"trigger": "get_paged_template", "contents": "get_paged_template();"},
{"trigger": "get_pagenum_link", "contents": "get_pagenum_link(${1: ${2:\\$pagenum}, ${3:\\$escape}} );"},
{"trigger": "get_pages", "contents": "get_pages(${1: ${2:\\$args}} );"},
{"trigger": "get_pending_comments_num", "contents": "get_pending_comments_num(${1: ${2:\\$post_id}} );"},
{"trigger": "get_permalink", "contents": "get_permalink(${1: ${2:\\$id}, ${3:\\$leavename}} );"},
{"trigger": "get_plugin_data", "contents": "get_plugin_data(${1: ${2:\\$plugin_file}, ${3:\\$markup}, ${4:\\$translate}} );"},
{"trigger": "get_plugin_files", "contents": "get_plugin_files(${1: ${2:\\$plugin}} );"},
{"trigger": "get_plugin_page_hook", "contents": "get_plugin_page_hook(${1: ${2:\\$plugin_page}, ${3:\\$parent_page}} );"},
{"trigger": "get_plugin_page_hookname", "contents": "get_plugin_page_hookname(${1: ${2:\\$plugin_page}, ${3:\\$parent_page}} );"},
{"trigger": "get_plugin_updates", "contents": "get_plugin_updates();"},
{"trigger": "get_plugins", "contents": "get_plugins(${1: ${2:\\$plugin_folder}} );"},
{"trigger": "get_post", "contents": "get_post(${1: ${2:\\$post}, ${3:\\$output}, ${4:\\$filter}} );"},
{"trigger": "get_post_ancestors", "contents": "get_post_ancestors(${1: ${2:\\$post}} );"},
{"trigger": "get_post_class", "contents": "get_post_class(${1: ${2:\\$class}, ${3:\\$post_id}} );"},
{"trigger": "get_post_comments_feed_link", "contents": "get_post_comments_feed_link(${1: ${2:\\$post_id}, ${3:\\$feed}} );"},
{"trigger": "get_post_custom", "contents": "get_post_custom(${1: ${2:\\$post_id}} );"},
{"trigger": "get_post_custom_keys", "contents": "get_post_custom_keys(${1: ${2:\\$post_id}} );"},
{"trigger": "get_post_custom_values", "contents": "get_post_custom_values(${1: ${2:\\$key}, ${3:\\$post_id}} );"},
{"trigger": "get_post_field", "contents": "get_post_field(${1: ${2:\\$field}, ${3:\\$post}, ${4:\\$context}} );"},
{"trigger": "get_post_format", "contents": "get_post_format(${1: ${2:\\$post}} );"},
{"trigger": "get_post_format_link", "contents": "get_post_format_link(${1: ${2:\\$format}} );"},
{"trigger": "get_post_format_slugs", "contents": "get_post_format_slugs();"},
{"trigger": "get_post_format_string", "contents": "get_post_format_string(${1: ${2:\\$slug}} );"},
{"trigger": "get_post_format_strings", "contents": "get_post_format_strings();"},
{"trigger": "get_post_galleries", "contents": "get_post_galleries(${1: ${2:\\$post}, ${3:\\$html}} );"},
{"trigger": "get_post_galleries_images", "contents": "get_post_galleries_images(${1: ${2:\\$post}} );"},
{"trigger": "get_post_gallery", "contents": "get_post_gallery(${1: ${2:\\$post}, ${3:\\$html}} );"},
{"trigger": "get_post_gallery_images", "contents": "get_post_gallery_images(${1: ${2:\\$post}} );"},
{"trigger": "get_post_meta", "contents": "get_post_meta(${1: ${2:\\$post_id}, ${3:\\$key}, ${4:\\$single}} );"},
{"trigger": "get_post_meta_by_id", "contents": "get_post_meta_by_id(${1: ${2:\\$mid}} );"},
{"trigger": "get_post_mime_type", "contents": "get_post_mime_type(${1: ${2:\\$ID}} );"},
{"trigger": "get_post_mime_types", "contents": "get_post_mime_types();"},
{"trigger": "get_post_modified_time", "contents": "get_post_modified_time(${1: ${2:\\$d}, ${3:\\$gmt}, ${4:\\$post}, ${5:\\$translate}} );"},
{"trigger": "get_post_permalink", "contents": "get_post_permalink(${1: ${2:\\$id}, ${3:\\$leavename}, ${4:\\$sample}} );"},
{"trigger": "get_post_reply_link", "contents": "get_post_reply_link(${1: ${2:\\$args}, ${3:\\$post}} );"},
{"trigger": "get_post_stati", "contents": "get_post_stati(${1: ${2:\\$args}, ${3:\\$output}, ${4:\\$operator}} );"},
{"trigger": "get_post_status", "contents": "get_post_status(${1: ${2:\\$ID}} );"},
{"trigger": "get_post_status_object", "contents": "get_post_status_object(${1: ${2:\\$post_status}} );"},
{"trigger": "get_post_statuses", "contents": "get_post_statuses();"},
{"trigger": "get_post_taxonomies", "contents": "get_post_taxonomies(${1: ${2:\\$post}} );"},
{"trigger": "get_post_thumbnail_id", "contents": "get_post_thumbnail_id(${1: ${2:\\$post_id}} );"},
{"trigger": "get_post_time", "contents": "get_post_time(${1: ${2:\\$d}, ${3:\\$gmt}, ${4:\\$post}, ${5:\\$translate}} );"},
{"trigger": "get_post_type", "contents": "get_post_type(${1: ${2:\\$post}} );"},
{"trigger": "get_post_type_archive_feed_link", "contents": "get_post_type_archive_feed_link(${1: ${2:\\$post_type}, ${3:\\$feed}} );"},
{"trigger": "get_post_type_archive_link", "contents": "get_post_type_archive_link(${1: ${2:\\$post_type}} );"},
{"trigger": "get_post_type_archive_template", "contents": "get_post_type_archive_template();"},
{"trigger": "get_post_type_capabilities", "contents": "get_post_type_capabilities(${1: ${2:\\$args}} );"},
{"trigger": "get_post_type_labels", "contents": "get_post_type_labels(${1: ${2:\\$post_type_object}} );"},
{"trigger": "get_post_type_object", "contents": "get_post_type_object(${1: ${2:\\$post_type}} );"},
{"trigger": "get_post_types", "contents": "get_post_types(${1: ${2:\\$args}, ${3:\\$output}, ${4:\\$operator}} );"},
{"trigger": "get_posts", "contents": "get_posts(${1: ${2:\\$args}} );"},
{"trigger": "get_posts_by_author_sql", "contents": "get_posts_by_author_sql(${1: ${2:\\$post_type}, ${3:\\$full}, ${4:\\$post_author}, ${5:\\$public_only}} );"},
{"trigger": "get_posts_nav_link", "contents": "get_posts_nav_link(${1: ${2:\\$args}} );"},
{"trigger": "get_preferred_from_update_core", "contents": "get_preferred_from_update_core();"},
{"trigger": "get_previous_comments_link", "contents": "get_previous_comments_link(${1: ${2:\\$label}} );"},
{"trigger": "get_previous_post", "contents": "get_previous_post(${1: ${2:\\$in_same_cat}, ${3:\\$excluded_categories}} );"},
{"trigger": "get_previous_posts_link", "contents": "get_previous_posts_link(${1: ${2:\\$label}} );"},
{"trigger": "get_previous_posts_page_link", "contents": "get_previous_posts_page_link();"},
{"trigger": "get_private_posts_cap_sql", "contents": "get_private_posts_cap_sql(${1: ${2:\\$post_type}} );"},
{"trigger": "get_pung", "contents": "get_pung(${1: ${2:\\$post_id}} );"},
{"trigger": "get_queried_object", "contents": "get_queried_object();"},
{"trigger": "get_queried_object_id", "contents": "get_queried_object_id();"},
{"trigger": "get_query_template", "contents": "get_query_template(${1: ${2:\\$type}, ${3:\\$templates}} );"},
{"trigger": "get_query_var", "contents": "get_query_var(${1: ${2:\\$var}} );"},
{"trigger": "get_random_header_image", "contents": "get_random_header_image();"},
{"trigger": "get_raw_theme_root", "contents": "get_raw_theme_root(${1: ${2:\\$stylesheet_or_template}, ${3:\\$skip_cache}} );"},
{"trigger": "get_real_file_to_edit", "contents": "get_real_file_to_edit(${1: ${2:\\$file}} );"},
{"trigger": "get_registered_nav_menus", "contents": "get_registered_nav_menus();"},
{"trigger": "get_role", "contents": "get_role(${1: ${2:\\$role}} );"},
{"trigger": "get_sample_permalink", "contents": "get_sample_permalink(${1: ${2:\\$id}, ${3:\\$title}, ${4:\\$name}} );"},
{"trigger": "get_sample_permalink_html", "contents": "get_sample_permalink_html(${1: ${2:\\$id}, ${3:\\$new_title}, ${4:\\$new_slug}} );"},
{"trigger": "get_screen_icon", "contents": "get_screen_icon(${1: ${2:\\$screen}} );"},
{"trigger": "get_search_comments_feed_link", "contents": "get_search_comments_feed_link(${1: ${2:\\$search_query}, ${3:\\$feed}} );"},
{"trigger": "get_search_feed_link", "contents": "get_search_feed_link(${1: ${2:\\$search_query}, ${3:\\$feed}} );"},
{"trigger": "get_search_form", "contents": "get_search_form(${1: ${2:\\$echo}} );"},
{"trigger": "get_search_link", "contents": "get_search_link(${1: ${2:\\$query}} );"},
{"trigger": "get_search_query", "contents": "get_search_query(${1: ${2:\\$escaped}} );"},
{"trigger": "get_search_template", "contents": "get_search_template();"},
{"trigger": "get_settings_errors", "contents": "get_settings_errors(${1: ${2:\\$setting}, ${3:\\$sanitize}} );"},
{"trigger": "get_shortcode_regex", "contents": "get_shortcode_regex();"},
{"trigger": "get_shortcut_link", "contents": "get_shortcut_link();"},
{"trigger": "get_sidebar", "contents": "get_sidebar(${1: ${2:\\$name}} );"},
{"trigger": "get_single_template", "contents": "get_single_template();"},
{"trigger": "get_site_option", "contents": "get_site_option(${1: ${2:\\$option}, ${3:\\$default}, ${4:\\$use_cache}} );"},
{"trigger": "get_site_transient", "contents": "get_site_transient(${1: ${2:\\$transient}} );"},
{"trigger": "get_site_url", "contents": "get_site_url(${1: ${2:\\$blog_id}, ${3:\\$path}, ${4:\\$scheme}} );"},
{"trigger": "get_status_header_desc", "contents": "get_status_header_desc(${1: ${2:\\$code}} );"},
{"trigger": "get_stylesheet", "contents": "get_stylesheet();"},
{"trigger": "get_stylesheet_directory", "contents": "get_stylesheet_directory();"},
{"trigger": "get_stylesheet_directory_uri", "contents": "get_stylesheet_directory_uri();"},
{"trigger": "get_stylesheet_uri", "contents": "get_stylesheet_uri();"},
{"trigger": "get_submit_button", "contents": "get_submit_button(${1: ${2:\\$text}, ${3:\\$type}, ${4:\\$name}, ${5:\\$wrap}, ${6:\\$other_attributes}} );"},
{"trigger": "get_super_admins", "contents": "get_super_admins();"},
{"trigger": "get_tag", "contents": "get_tag(${1: ${2:\\$tag}, ${3:\\$output}, ${4:\\$filter}} );"},
{"trigger": "get_tag_feed_link", "contents": "get_tag_feed_link(${1: ${2:\\$tag_id}, ${3:\\$feed}} );"},
{"trigger": "get_tag_link", "contents": "get_tag_link(${1: ${2:\\$tag}} );"},
{"trigger": "get_tag_regex", "contents": "get_tag_regex(${1: ${2:\\$tag}} );"},
{"trigger": "get_tag_template", "contents": "get_tag_template();"},
{"trigger": "get_tags", "contents": "get_tags(${1: ${2:\\$args}} );"},
{"trigger": "get_tags_to_edit", "contents": "get_tags_to_edit(${1: ${2:\\$post_id}, ${3:\\$taxonomy}} );"},
{"trigger": "get_tax_sql", "contents": "get_tax_sql(${1: ${2:\\$tax_query}, ${3:\\$primary_table}, ${4:\\$primary_id_column}} );"},
{"trigger": "get_taxonomies", "contents": "get_taxonomies(${1: ${2:\\$args}, ${3:\\$output}, ${4:\\$operator}} );"},
{"trigger": "get_taxonomies_for_attachments", "contents": "get_taxonomies_for_attachments(${1: ${2:\\$output}} );"},
{"trigger": "get_taxonomy", "contents": "get_taxonomy(${1: ${2:\\$taxonomy}} );"},
{"trigger": "get_taxonomy_labels", "contents": "get_taxonomy_labels(${1: ${2:\\$tax}} );"},
{"trigger": "get_taxonomy_template", "contents": "get_taxonomy_template();"},
{"trigger": "get_temp_dir", "contents": "get_temp_dir();"},
{"trigger": "get_template", "contents": "get_template();"},
{"trigger": "get_template_directory", "contents": "get_template_directory();"},
{"trigger": "get_template_directory_uri", "contents": "get_template_directory_uri();"},
{"trigger": "get_template_part", "contents": "get_template_part(${1: ${2:\\$slug}, ${3:\\$name}} );"},
{"trigger": "get_term", "contents": "get_term(${1: ${2:\\$term}, ${3:\\$taxonomy}, ${4:\\$output}, ${5:\\$filter}} );"},
{"trigger": "get_term_by", "contents": "get_term_by(${1: ${2:\\$field}, ${3:\\$value}, ${4:\\$taxonomy}, ${5:\\$output}, ${6:\\$filter}} );"},
{"trigger": "get_term_children", "contents": "get_term_children(${1: ${2:\\$term_id}, ${3:\\$taxonomy}} );"},
{"trigger": "get_term_feed_link", "contents": "get_term_feed_link(${1: ${2:\\$term_id}, ${3:\\$taxonomy}, ${4:\\$feed}} );"},
{"trigger": "get_term_field", "contents": "get_term_field(${1: ${2:\\$field}, ${3:\\$term}, ${4:\\$taxonomy}, ${5:\\$context}} );"},
{"trigger": "get_term_link", "contents": "get_term_link(${1: ${2:\\$term}, ${3:\\$taxonomy}} );"},
{"trigger": "get_term_to_edit", "contents": "get_term_to_edit(${1: ${2:\\$id}, ${3:\\$taxonomy}} );"},
{"trigger": "get_terms", "contents": "get_terms(${1: ${2:\\$taxonomies}, ${3:\\$args}} );"},
{"trigger": "get_terms_to_edit", "contents": "get_terms_to_edit(${1: ${2:\\$post_id}, ${3:\\$taxonomy}} );"},
{"trigger": "get_the_author", "contents": "get_the_author(${1: ${2:\\$deprecated}} );"},
{"trigger": "get_the_author_link", "contents": "get_the_author_link();"},
{"trigger": "get_the_author_meta", "contents": "get_the_author_meta(${1: ${2:\\$field}, ${3:\\$user_id}} );"},
{"trigger": "get_the_author_posts", "contents": "get_the_author_posts();"},
{"trigger": "get_the_category", "contents": "get_the_category(${1: ${2:\\$id}} );"},
{"trigger": "get_the_category_by_id", "contents": "get_the_category_by_id(${1: ${2:\\$cat_ID}} );"},
{"trigger": "get_the_category_list", "contents": "get_the_category_list(${1: ${2:\\$separator}, ${3:\\$parents}, ${4:\\$post_id}} );"},
{"trigger": "get_the_category_rss", "contents": "get_the_category_rss(${1: ${2:\\$type}} );"},
{"trigger": "get_the_content", "contents": "get_the_content(${1: ${2:\\$more_link_text}, ${3:\\$strip_teaser}} );"},
{"trigger": "get_the_content_feed", "contents": "get_the_content_feed(${1: ${2:\\$feed_type}} );"},
{"trigger": "get_the_date", "contents": "get_the_date(${1: ${2:\\$d}} );"},
{"trigger": "get_the_excerpt", "contents": "get_the_excerpt(${1: ${2:\\$deprecated}} );"},
{"trigger": "get_the_generator", "contents": "get_the_generator(${1: ${2:\\$type}} );"},
{"trigger": "get_the_guid", "contents": "get_the_guid(${1: ${2:\\$id}} );"},
{"trigger": "get_the_id", "contents": "get_the_id();"},
{"trigger": "get_the_modified_author", "contents": "get_the_modified_author();"},
{"trigger": "get_the_modified_date", "contents": "get_the_modified_date(${1: ${2:\\$d}} );"},
{"trigger": "get_the_modified_time", "contents": "get_the_modified_time(${1: ${2:\\$d}} );"},
{"trigger": "get_the_password_form", "contents": "get_the_password_form(${1: ${2:\\$post}} );"},
{"trigger": "get_the_post_thumbnail", "contents": "get_the_post_thumbnail(${1: ${2:\\$post_id}, ${3:\\$size}, ${4:\\$attr}} );"},
{"trigger": "get_the_tag_list", "contents": "get_the_tag_list(${1: ${2:\\$before}, ${3:\\$sep}, ${4:\\$after}, ${5:\\$id}} );"},
{"trigger": "get_the_tags", "contents": "get_the_tags(${1: ${2:\\$id}} );"},
{"trigger": "get_the_taxonomies", "contents": "get_the_taxonomies(${1: ${2:\\$post}, ${3:\\$args}} );"},
{"trigger": "get_the_term_list", "contents": "get_the_term_list(${1: ${2:\\$id}, ${3:\\$taxonomy}, ${4:\\$before}, ${5:\\$sep}, ${6:\\$after}} );"},
{"trigger": "get_the_terms", "contents": "get_the_terms(${1: ${2:\\$post}, ${3:\\$taxonomy}} );"},
{"trigger": "get_the_time", "contents": "get_the_time(${1: ${2:\\$d}, ${3:\\$post}} );"},
{"trigger": "get_the_title", "contents": "get_the_title(${1: ${2:\\$post}} );"},
{"trigger": "get_the_title_rss", "contents": "get_the_title_rss();"},
{"trigger": "get_theme_feature_list", "contents": "get_theme_feature_list(${1: ${2:\\$api}} );"},
{"trigger": "get_theme_mod", "contents": "get_theme_mod(${1: ${2:\\$name}, ${3:\\$default}} );"},
{"trigger": "get_theme_mods", "contents": "get_theme_mods();"},
{"trigger": "get_theme_root", "contents": "get_theme_root(${1: ${2:\\$stylesheet_or_template}} );"},
{"trigger": "get_theme_root_uri", "contents": "get_theme_root_uri(${1: ${2:\\$stylesheet_or_template}, ${3:\\$theme_root}} );"},
{"trigger": "get_theme_roots", "contents": "get_theme_roots();"},
{"trigger": "get_theme_support", "contents": "get_theme_support(${1: ${2:\\$feature}} );"},
{"trigger": "get_theme_updates", "contents": "get_theme_updates();"},
{"trigger": "get_to_ping", "contents": "get_to_ping(${1: ${2:\\$post_id}} );"},
{"trigger": "get_trackback_url", "contents": "get_trackback_url();"},
{"trigger": "get_transient", "contents": "get_transient(${1: ${2:\\$transient}} );"},
{"trigger": "get_translations_for_domain", "contents": "get_translations_for_domain(${1: ${2:\\$domain}} );"},
{"trigger": "get_upload_iframe_src", "contents": "get_upload_iframe_src(${1: ${2:\\$type}, ${3:\\$post_id}, ${4:\\$tab}} );"},
{"trigger": "get_uploaded_header_images", "contents": "get_uploaded_header_images();"},
{"trigger": "get_url_in_content", "contents": "get_url_in_content(${1: ${2:\\$content}} );"},
{"trigger": "get_user_by", "contents": "get_user_by(${1: ${2:\\$field}, ${3:\\$value}} );"},
{"trigger": "get_user_meta", "contents": "get_user_meta(${1: ${2:\\$user_id}, ${3:\\$key}, ${4:\\$single}} );"},
{"trigger": "get_user_option", "contents": "get_user_option(${1: ${2:\\$option}, ${3:\\$user}, ${4:\\$deprecated}} );"},
{"trigger": "get_user_setting", "contents": "get_user_setting(${1: ${2:\\$name}, ${3:\\$default}} );"},
{"trigger": "get_user_to_edit", "contents": "get_user_to_edit(${1: ${2:\\$user_id}} );"},
{"trigger": "get_userdata", "contents": "get_userdata(${1: ${2:\\$user_id}} );"},
{"trigger": "get_users", "contents": "get_users(${1: ${2:\\$args}} );"},
{"trigger": "get_users_drafts", "contents": "get_users_drafts(${1: ${2:\\$user_id}} );"},
{"trigger": "get_weekstartend", "contents": "get_weekstartend(${1: ${2:\\$mysqlstring}, ${3:\\$start_of_week}} );"},
{"trigger": "get_wp_title_rss", "contents": "get_wp_title_rss(${1: ${2:\\$sep}} );"},
{"trigger": "get_year_link", "contents": "get_year_link(${1: ${2:\\$year}} );"},
{"trigger": "global_terms_enabled", "contents": "global_terms_enabled();"},
{"trigger": "got_mod_rewrite", "contents": "got_mod_rewrite();"},
{"trigger": "got_url_rewrite", "contents": "got_url_rewrite();"},
{"trigger": "has_action", "contents": "has_action(${1: ${2:\\$tag}, ${3:\\$function_to_check}} )"},
{"trigger": "has_category", "contents": "has_category(${1: ${2:\\$category}, ${3:\\$post}} )"},
{"trigger": "has_excerpt", "contents": "has_excerpt(${1: ${2:\\$id}} )"},
{"trigger": "has_filter", "contents": "has_filter(${1: ${2:\\$tag}, ${3:\\$function_to_check}} )"},
{"trigger": "has_meta", "contents": "has_meta(${1: ${2:\\$postid}} )"},
{"trigger": "has_nav_menu", "contents": "has_nav_menu(${1: ${2:\\$location}} )"},
{"trigger": "has_post_format", "contents": "has_post_format(${1: ${2:\\$format}, ${3:\\$post}} )"},
{"trigger": "has_post_thumbnail", "contents": "has_post_thumbnail(${1: ${2:\\$post_id}} )"},
{"trigger": "has_shortcode", "contents": "has_shortcode(${1: ${2:\\$content}, ${3:\\$tag}} )"},
{"trigger": "has_tag", "contents": "has_tag(${1: ${2:\\$tag}, ${3:\\$post}} )"},
{"trigger": "has_term", "contents": "has_term(${1: ${2:\\$term}, ${3:\\$taxonomy}, ${4:\\$post}} )"},
{"trigger": "have_comments", "contents": "have_comments()"},
{"trigger": "have_posts", "contents": "have_posts()"},
{"trigger": "header_image", "contents": "header_image();"},
{"trigger": "header_textcolor", "contents": "header_textcolor();"},
{"trigger": "home_url", "contents": "home_url(${1: ${2:\\$path}, ${3:\\$scheme}} );"},
{"trigger": "html_type_rss", "contents": "html_type_rss();"},
{"trigger": "htmlentities2", "contents": "htmlentities2(${1: ${2:\\$myHTML}} );"},
{"trigger": "human_time_diff", "contents": "human_time_diff(${1: ${2:\\$from}, ${3:\\$to}} );"},
{"trigger": "iframe_footer", "contents": "iframe_footer();"},
{"trigger": "iframe_header", "contents": "iframe_header(${1: ${2:\\$title}, ${3:\\$limit_styles}} );"},
{"trigger": "iis7_add_rewrite_rule", "contents": "iis7_add_rewrite_rule(${1: ${2:\\$filename}, ${3:\\$rewrite_rule}} );"},
{"trigger": "iis7_delete_rewrite_rule", "contents": "iis7_delete_rewrite_rule(${1: ${2:\\$filename}} );"},
{"trigger": "iis7_rewrite_rule_exists", "contents": "iis7_rewrite_rule_exists(${1: ${2:\\$filename}} )"},
{"trigger": "iis7_save_url_rewrite_rules", "contents": "iis7_save_url_rewrite_rules();"},
{"trigger": "iis7_supports_permalinks", "contents": "iis7_supports_permalinks();"},
{"trigger": "image_add_caption", "contents": "image_add_caption(${1: ${2:\\$html}, ${3:\\$id}, ${4:\\$caption}, ${5:\\$title}, ${6:\\$align}, ${7:\\$url}, ${8:\\$size}, ${9:\\$alt}} );"},
{"trigger": "image_align_input_fields", "contents": "image_align_input_fields(${1: ${2:\\$post}, ${3:\\$checked}} );"},
{"trigger": "image_attachment_fields_to_edit", "contents": "image_attachment_fields_to_edit(${1: ${2:\\$form_fields}, ${3:\\$post}} );"},
{"trigger": "image_attachment_fields_to_save", "contents": "image_attachment_fields_to_save(${1: ${2:\\$post}, ${3:\\$attachment}} );"},
{"trigger": "image_constrain_size_for_editor", "contents": "image_constrain_size_for_editor(${1: ${2:\\$width}, ${3:\\$height}, ${4:\\$size}, ${5:\\$context}} );"},
{"trigger": "image_downsize", "contents": "image_downsize(${1: ${2:\\$id}, ${3:\\$size}} );"},
{"trigger": "image_get_intermediate_size", "contents": "image_get_intermediate_size(${1: ${2:\\$post_id}, ${3:\\$size}} );"},
{"trigger": "image_hwstring", "contents": "image_hwstring(${1: ${2:\\$width}, ${3:\\$height}} );"},
{"trigger": "image_link_input_fields", "contents": "image_link_input_fields(${1: ${2:\\$post}, ${3:\\$url_type}} );"},
{"trigger": "image_make_intermediate_size", "contents": "image_make_intermediate_size(${1: ${2:\\$file}, ${3:\\$width}, ${4:\\$height}, ${5:\\$crop}} );"},
{"trigger": "image_media_send_to_editor", "contents": "image_media_send_to_editor(${1: ${2:\\$html}, ${3:\\$attachment_id}, ${4:\\$attachment}} );"},
{"trigger": "image_resize_dimensions", "contents": "image_resize_dimensions(${1: ${2:\\$orig_w}, ${3:\\$orig_h}, ${4:\\$dest_w}, ${5:\\$dest_h}, ${6:\\$crop}} );"},
{"trigger": "image_size_input_fields", "contents": "image_size_input_fields(${1: ${2:\\$post}, ${3:\\$check}} );"},
{"trigger": "img_caption_shortcode", "contents": "img_caption_shortcode(${1: ${2:\\$attr}, ${3:\\$content}} );"},
{"trigger": "in_category", "contents": "in_category(${1: ${2:\\$category}, ${3:\\$post}} )"},
{"trigger": "in_the_loop", "contents": "in_the_loop()"},
{"trigger": "includes_url", "contents": "includes_url(${1: ${2:\\$path}, ${3:\\$scheme}} );"},
{"trigger": "insert_with_markers", "contents": "insert_with_markers(${1: ${2:\\$filename}, ${3:\\$marker}, ${4:\\$insertion}} );"},
{"trigger": "is_404", "contents": "is_404()"},
{"trigger": "is_active_sidebar", "contents": "is_active_sidebar(${1: ${2:\\$index}} )"},
{"trigger": "is_active_widget", "contents": "is_active_widget(${1: ${2:\\$callback}, ${3:\\$widget_id}, ${4:\\$id_base}, ${5:\\$skip_inactive}} )"},
{"trigger": "is_admin", "contents": "is_admin()"},
{"trigger": "is_admin_bar_showing", "contents": "is_admin_bar_showing()"},
{"trigger": "is_allowed_http_origin", "contents": "is_allowed_http_origin(${1: ${2:\\$origin}} )"},
{"trigger": "is_archive", "contents": "is_archive()"},
{"trigger": "is_attachment", "contents": "is_attachment()"},
{"trigger": "is_author", "contents": "is_author(${1: ${2:\\$author}} )"},
{"trigger": "is_blog_admin", "contents": "is_blog_admin()"},
{"trigger": "is_blog_installed", "contents": "is_blog_installed()"},
{"trigger": "is_category", "contents": "is_category(${1: ${2:\\$category}} )"},
{"trigger": "is_child_theme", "contents": "is_child_theme()"},
{"trigger": "is_comment_feed", "contents": "is_comment_feed()"},
{"trigger": "is_comments_popup", "contents": "is_comments_popup()"},
{"trigger": "is_date", "contents": "is_date()"},
{"trigger": "is_day", "contents": "is_day()"},
{"trigger": "is_dynamic_sidebar", "contents": "is_dynamic_sidebar()"},
{"trigger": "is_email", "contents": "is_email(${1: ${2:\\$email}, ${3:\\$deprecated}} )"},
{"trigger": "is_feed", "contents": "is_feed(${1: ${2:\\$feeds}} )"},
{"trigger": "is_front_page", "contents": "is_front_page()"},
{"trigger": "is_home", "contents": "is_home()"},
{"trigger": "is_lighttpd_before_150", "contents": "is_lighttpd_before_150()"},
{"trigger": "is_local_attachment", "contents": "is_local_attachment(${1: ${2:\\$url}} )"},
{"trigger": "is_main_network", "contents": "is_main_network(${1: ${2:\\$network_id = null}} )"},
{"trigger": "is_main_query", "contents": "is_main_query()"},
{"trigger": "is_main_site", "contents": "is_main_site(${1: ${2:\\$blog_id}} )"},
{"trigger": "is_month", "contents": "is_month()"},
{"trigger": "is_multi_author", "contents": "is_multi_author()"},
{"trigger": "is_multisite", "contents": "is_multisite()"},
{"trigger": "is_nav_menu", "contents": "is_nav_menu(${1: ${2:\\$menu}} )"},
{"trigger": "is_nav_menu_item", "contents": "is_nav_menu_item(${1: ${2:\\$menu_item_id}} )"},
{"trigger": "is_network_admin", "contents": "is_network_admin()"},
{"trigger": "is_network_only_plugin", "contents": "is_network_only_plugin(${1: ${2:\\$plugin}} )"},
{"trigger": "is_new_day", "contents": "is_new_day()"},
{"trigger": "is_object_in_taxonomy", "contents": "is_object_in_taxonomy(${1: ${2:\\$object_type}, ${3:\\$taxonomy}} )"},
{"trigger": "is_object_in_term", "contents": "is_object_in_term(${1: ${2:\\$object_id}, ${3:\\$taxonomy}, ${4:\\$terms}} )"},
{"trigger": "is_page", "contents": "is_page(${1: ${2:\\$page}} )"},
{"trigger": "is_page_template", "contents": "is_page_template(${1: ${2:\\$template}} )"},
{"trigger": "is_paged", "contents": "is_paged()"},
{"trigger": "is_plugin_active", "contents": "is_plugin_active(${1: ${2:\\$plugin}} )"},
{"trigger": "is_plugin_active_for_network", "contents": "is_plugin_active_for_network(${1: ${2:\\$plugin}} )"},
{"trigger": "is_plugin_inactive", "contents": "is_plugin_inactive(${1: ${2:\\$plugin}} )"},
{"trigger": "is_post_type_archive", "contents": "is_post_type_archive(${1: ${2:\\$post_types}} )"},
{"trigger": "is_post_type_hierarchical", "contents": "is_post_type_hierarchical(${1: ${2:\\$post_type}} )"},
{"trigger": "is_preview", "contents": "is_preview()"},
{"trigger": "is_protected_meta", "contents": "is_protected_meta(${1: ${2:\\$meta_key}, ${3:\\$meta_type}} )"},
{"trigger": "is_random_header_image", "contents": "is_random_header_image(${1: ${2:\\$type}} )"},
{"trigger": "is_robots", "contents": "is_robots()"},
{"trigger": "is_rtl", "contents": "is_rtl()"},
{"trigger": "is_search", "contents": "is_search()"},
{"trigger": "is_serialized", "contents": "is_serialized(${1: ${2:\\$data}} )"},
{"trigger": "is_serialized_string", "contents": "is_serialized_string(${1: ${2:\\$data}} )"},
{"trigger": "is_single", "contents": "is_single(${1: ${2:\\$post}} )"},
{"trigger": "is_singular", "contents": "is_singular(${1: ${2:\\$post_types}} )"},
{"trigger": "is_ssl", "contents": "is_ssl()"},
{"trigger": "is_sticky", "contents": "is_sticky(${1: ${2:\\$post_id}} )"},
{"trigger": "is_super_admin", "contents": "is_super_admin(${1: ${2:\\$user_id}} )"},
{"trigger": "is_tag", "contents": "is_tag(${1: ${2:\\$slug}} )"},
{"trigger": "is_tax", "contents": "is_tax(${1: ${2:\\$taxonomy}, ${3:\\$term}} )"},
{"trigger": "is_taxonomy_hierarchical", "contents": "is_taxonomy_hierarchical(${1: ${2:\\$taxonomy}} )"},
{"trigger": "is_textdomain_loaded", "contents": "is_textdomain_loaded(${1: ${2:\\$domain}} )"},
{"trigger": "is_time", "contents": "is_time()"},
{"trigger": "is_trackback", "contents": "is_trackback()"},
{"trigger": "is_uninstallable_plugin", "contents": "is_uninstallable_plugin(${1: ${2:\\$plugin}} )"},
{"trigger": "is_user_admin", "contents": "is_user_admin()"},
{"trigger": "is_user_logged_in", "contents": "is_user_logged_in()"},
{"trigger": "is_user_member_of_blog", "contents": "is_user_member_of_blog(${1: ${2:\\$user_id}, ${3:\\$blog_id}} )"},
{"trigger": "is_wp_error", "contents": "is_wp_error(${1: ${2:\\$thing}} )"},
{"trigger": "is_year", "contents": "is_year()"},
{"trigger": "iso8601_timezone_to_offset", "contents": "iso8601_timezone_to_offset(${1: ${2:\\$timezone}} );"},
{"trigger": "iso8601_to_datetime", "contents": "iso8601_to_datetime(${1: ${2:\\$date_string}, ${3:\\$timezone}} );"},
{"trigger": "kses_init", "contents": "kses_init();"},
{"trigger": "kses_init_filters", "contents": "kses_init_filters();"},
{"trigger": "kses_remove_filters", "contents": "kses_remove_filters();"},
{"trigger": "language_attributes", "contents": "language_attributes(${1: ${2:\\$doctype}} );"},
{"trigger": "like_escape", "contents": "like_escape(${1: ${2:\\$text}} );"},
{"trigger": "links_add_base_url", "contents": "links_add_base_url(${1: ${2:\\$content}, ${3:\\$base}, ${4:\\$attrs}} );"},
{"trigger": "links_add_target", "contents": "links_add_target(${1: ${2:\\$content}, ${3:\\$target}, ${4:\\$tags}} );"},
{"trigger": "list_files", "contents": "list_files(${1: ${2:\\$folder}, ${3:\\$levels}} );"},
{"trigger": "list_meta", "contents": "list_meta(${1: ${2:\\$meta}} );"},
{"trigger": "load_child_theme_textdomain", "contents": "load_child_theme_textdomain(${1: ${2:\\$domain}, ${3:\\$path}} );"},
{"trigger": "load_default_textdomain", "contents": "load_default_textdomain();"},
{"trigger": "load_image_to_edit", "contents": "load_image_to_edit(${1: ${2:\\$attachment_id}, ${3:\\$mime_type}, ${4:\\$size}} );"},
{"trigger": "load_muplugin_textdomain", "contents": "load_muplugin_textdomain(${1: ${2:\\$domain}, ${3:\\$mu_plugin_rel_path}} );"},
{"trigger": "load_plugin_textdomain", "contents": "load_plugin_textdomain(${1: ${2:\\$domain}, ${3:\\$abs_rel_path}, ${4:\\$plugin_rel_path}} );"},
{"trigger": "load_template", "contents": "load_template(${1: ${2:\\$_template_file}, ${3:\\$require_once}} );"},
{"trigger": "load_textdomain", "contents": "load_textdomain(${1: ${2:\\$domain}, ${3:\\$mofile}} );"},
{"trigger": "load_theme_textdomain", "contents": "load_theme_textdomain(${1: ${2:\\$domain}, ${3:\\$path}} );"},
{"trigger": "locale_stylesheet", "contents": "locale_stylesheet();"},
{"trigger": "locate_template", "contents": "locate_template(${1: ${2:\\$template_names}, ${3:\\$load}, ${4:\\$require_once}} );"},
{"trigger": "mbstring_binary_safe_encoding", "contents": "mbstring_binary_safe_encoding(${1: ${2:\\$reset = false }} );"},
{"trigger": "maintenance_nag", "contents": "maintenance_nag();"},
{"trigger": "make_clickable", "contents": "make_clickable(${1: ${2:\\$text}} );"},
{"trigger": "map_meta_cap", "contents": "map_meta_cap(${1: ${2:\\$cap}, ${3:\\$user_id}} );"},
{"trigger": "maybe_serialize", "contents": "maybe_serialize(${1: ${2:\\$data}} );"},
{"trigger": "maybe_unserialize", "contents": "maybe_unserialize(${1: ${2:\\$original}} );"},
{"trigger": "media_buttons", "contents": "media_buttons(${1: ${2:\\$editor_id}} );"},
{"trigger": "media_handle_sideload", "contents": "media_handle_sideload(${1: ${2:\\$file_array}, ${3:\\$post_id}, ${4:\\$desc}, ${5:\\$post_data}} );"},
{"trigger": "media_handle_upload", "contents": "media_handle_upload(${1: ${2:\\$file_id}, ${3:\\$post_id}, ${4:\\$post_data}, ${5:\\$overrides}} );"},
{"trigger": "media_post_single_attachment_fields_to_edit", "contents": "media_post_single_attachment_fields_to_edit(${1: ${2:\\$form_fields}, ${3:\\$post}} );"},
{"trigger": "media_send_to_editor", "contents": "media_send_to_editor(${1: ${2:\\$html}} );"},
{"trigger": "media_sideload_image", "contents": "media_sideload_image(${1: ${2:\\$file}, ${3:\\$post_id}, ${4:\\$desc}} );"},
{"trigger": "media_single_attachment_fields_to_edit", "contents": "media_single_attachment_fields_to_edit(${1: ${2:\\$form_fields}, ${3:\\$post}} );"},
{"trigger": "media_upload_flash_bypass", "contents": "media_upload_flash_bypass();"},
{"trigger": "media_upload_form", "contents": "media_upload_form(${1: ${2:\\$errors}} );"},
{"trigger": "media_upload_form_handler", "contents": "media_upload_form_handler();"},
{"trigger": "media_upload_gallery", "contents": "media_upload_gallery();"},
{"trigger": "media_upload_gallery_form", "contents": "media_upload_gallery_form(${1: ${2:\\$errors}} );"},
{"trigger": "media_upload_header", "contents": "media_upload_header();"},
{"trigger": "media_upload_html_bypass", "contents": "media_upload_html_bypass();"},
{"trigger": "media_upload_library", "contents": "media_upload_library();"},
{"trigger": "media_upload_library_form", "contents": "media_upload_library_form(${1: ${2:\\$errors}} );"},
{"trigger": "media_upload_max_image_resize", "contents": "media_upload_max_image_resize();"},
{"trigger": "media_upload_tabs", "contents": "media_upload_tabs();"},
{"trigger": "media_upload_text_after", "contents": "media_upload_text_after();"},
{"trigger": "media_upload_type_form", "contents": "media_upload_type_form(${1: ${2:\\$type}, ${3:\\$errors}, ${4:\\$id}} );"},
{"trigger": "media_upload_type_url_form", "contents": "media_upload_type_url_form(${1: ${2:\\$type}, ${3:\\$errors}, ${4:\\$id}} );"},
{"trigger": "menu_page_url", "contents": "menu_page_url(${1: ${2:\\$menu_slug}, ${3:\\$echo}} );"},
{"trigger": "meta_box_prefs", "contents": "meta_box_prefs(${1: ${2:\\$screen}} );"},
{"trigger": "meta_form", "contents": "meta_form();"},
{"trigger": "metadata_exists", "contents": "metadata_exists(${1: ${2:\\$meta_type}, ${3:\\$object_id}, ${4:\\$meta_key}} )"},
{"trigger": "ms_allowed_http_request_hosts", "contents": "ms_allowed_http_request_hosts(${1: ${2:\\$is_external}, ${3:\\$host}} );"},
{"trigger": "multisite_over_quota_message", "contents": "multisite_over_quota_message();"},
{"trigger": "mysql2date", "contents": "mysql2date(${1: ${2:\\$format}, ${3:\\$date}, ${4:\\$translate}} );"},
{"trigger": "network_admin_url", "contents": "network_admin_url(${1: ${2:\\$path}, ${3:\\$scheme}} );"},
{"trigger": "network_home_url", "contents": "network_home_url(${1: ${2:\\$path}, ${3:\\$scheme}} );"},
{"trigger": "network_site_url", "contents": "network_site_url(${1: ${2:\\$path}, ${3:\\$scheme}} );"},
{"trigger": "next_comments_link", "contents": "next_comments_link(${1: ${2:\\$label}, ${3:\\$max_page}} );"},
{"trigger": "next_image_link", "contents": "next_image_link(${1: ${2:\\$size}, ${3:\\$text}} );"},
{"trigger": "next_post_link", "contents": "next_post_link(${1: ${2:\\$format}, ${3:\\$link}, ${4:\\$in_same_cat}, ${5:\\$excluded_categories}} );"},
{"trigger": "next_post_rel_link", "contents": "next_post_rel_link(${1: ${2:\\$title}, ${3:\\$in_same_cat}, ${4:\\$excluded_categories}} );"},
{"trigger": "next_posts", "contents": "next_posts(${1: ${2:\\$max_page}, ${3:\\$echo}} );"},
{"trigger": "next_posts_link", "contents": "next_posts_link(${1: ${2:\\$label}, ${3:\\$max_page}} );"},
{"trigger": "nocache_headers", "contents": "nocache_headers();"},
{"trigger": "noindex", "contents": "noindex();"},
{"trigger": "normalize_whitespace", "contents": "normalize_whitespace(${1: ${2:\\$str}} );"},
{"trigger": "number_format_i18n", "contents": "number_format_i18n(${1: ${2:\\$number}, ${3:\\$decimals}} );"},
{"trigger": "option_update_filter", "contents": "option_update_filter(${1: ${2:\\$options}} );"},
{"trigger": "page_template_dropdown", "contents": "page_template_dropdown(${1: ${2:\\$default}} );"},
{"trigger": "paginate_comments_links", "contents": "paginate_comments_links(${1: ${2:\\$args}} );"},
{"trigger": "paginate_links", "contents": "paginate_links(${1: ${2:\\$args}} );"},
{"trigger": "parent_dropdown", "contents": "parent_dropdown(${1: ${2:\\$default}, ${3:\\$parent}, ${4:\\$level}} );"},
{"trigger": "path_is_absolute", "contents": "path_is_absolute(${1: ${2:\\$path}} )"},
{"trigger": "path_join", "contents": "path_join(${1: ${2:\\$base}, ${3:\\$path}} );"},
{"trigger": "permalink_anchor", "contents": "permalink_anchor(${1: ${2:\\$mode}} );"},
{"trigger": "pingback", "contents": "pingback(${1: ${2:\\$content}, ${3:\\$post_ID}} );"},
{"trigger": "pingback_ping_source_uri", "contents": "pingback_ping_source_uri(${1: ${2:\\$source_uri}} );"},
{"trigger": "pings_open", "contents": "pings_open(${1: ${2:\\$post_id}} )"},
{"trigger": "plugin_basename", "contents": "plugin_basename(${1: ${2:\\$file}} );"},
{"trigger": "plugin_dir_path", "contents": "plugin_dir_path(${1: ${2:\\$file}} );"},
{"trigger": "plugin_dir_url", "contents": "plugin_dir_url(${1: ${2:\\$file}} );"},
{"trigger": "plugins_url", "contents": "plugins_url(${1: ${2:\\$path}, ${3:\\$plugin}} );"},
{"trigger": "popuplinks", "contents": "popuplinks(${1: ${2:\\$text}} );"},
{"trigger": "post_class", "contents": "post_class(${1: ${2:\\$class}, ${3:\\$post_id}} );"},
{"trigger": "post_comments_feed_link", "contents": "post_comments_feed_link(${1: ${2:\\$link_text}, ${3:\\$post_id}, ${4:\\$feed}} );"},
{"trigger": "post_custom", "contents": "post_custom(${1: ${2:\\$key}} );"},
{"trigger": "post_exists", "contents": "post_exists(${1: ${2:\\$title}, ${3:\\$content}, ${4:\\$date}} );"},
{"trigger": "post_password_required", "contents": "post_password_required(${1: ${2:\\$post}} );"},
{"trigger": "post_permalink", "contents": "post_permalink(${1: ${2:\\$post_id}, ${3:\\$deprecated}} );"},
{"trigger": "post_preview", "contents": "post_preview();"},
{"trigger": "post_reply_link", "contents": "post_reply_link(${1: ${2:\\$args}, ${3:\\$post}} );"},
{"trigger": "post_type_archive_title", "contents": "post_type_archive_title(${1: ${2:\\$prefix}, ${3:\\$display}} );"},
{"trigger": "post_type_exists", "contents": "post_type_exists(${1: ${2:\\$post_type}} )"},
{"trigger": "post_type_supports", "contents": "post_type_supports(${1: ${2:\\$post_type}, ${3:\\$feature}} );"},
{"trigger": "postbox_classes", "contents": "postbox_classes(${1: ${2:\\$id}, ${3:\\$page}} );"},
{"trigger": "posts_nav_link", "contents": "posts_nav_link(${1: ${2:\\$sep}, ${3:\\$prelabel}, ${4:\\$nxtlabel}} );"},
{"trigger": "prep_atom_text_construct", "contents": "prep_atom_text_construct(${1: ${2:\\$data}} );"},
{"trigger": "prepend_attachment", "contents": "prepend_attachment(${1: ${2:\\$content}} );"},
{"trigger": "prev_post_rel_link", "contents": "prev_post_rel_link(${1: ${2:\\$title}, ${3:\\$in_same_cat}, ${4:\\$excluded_categories}} );"},
{"trigger": "preview_theme", "contents": "preview_theme();"},
{"trigger": "preview_theme_ob_filter", "contents": "preview_theme_ob_filter(${1: ${2:\\$content}} );"},
{"trigger": "preview_theme_ob_filter_callback", "contents": "preview_theme_ob_filter_callback(${1: ${2:\\$matches}} );"},
{"trigger": "previous_comments_link", "contents": "previous_comments_link(${1: ${2:\\$label}} );"},
{"trigger": "previous_image_link", "contents": "previous_image_link(${1: ${2:\\$size}, ${3:\\$text}} );"},
{"trigger": "previous_post_link", "contents": "previous_post_link(${1: ${2:\\$format}, ${3:\\$link}, ${4:\\$in_same_cat}, ${5:\\$excluded_categories}} );"},
{"trigger": "previous_posts", "contents": "previous_posts(${1: ${2:\\$echo}} );"},
{"trigger": "previous_posts_link", "contents": "previous_posts_link(${1: ${2:\\$label}} );"},
{"trigger": "print_admin_styles", "contents": "print_admin_styles();"},
{"trigger": "print_column_headers", "contents": "print_column_headers(${1: ${2:\\$screen}, ${3:\\$id}} );"},
{"trigger": "print_footer_scripts", "contents": "print_footer_scripts();"},
{"trigger": "print_head_scripts", "contents": "print_head_scripts();"},
{"trigger": "print_late_styles", "contents": "print_late_styles();"},
{"trigger": "privacy_ping_filter", "contents": "privacy_ping_filter(${1: ${2:\\$sites}} );"},
{"trigger": "query_posts", "contents": "query_posts(${1: ${2:\\$query}} );"},
{"trigger": "rawurlencode_deep", "contents": "rawurlencode_deep(${1: ${2:\\$value}} );"},
{"trigger": "redirect_canonical", "contents": "redirect_canonical(${1: ${2:\\$requested_url}, ${3:\\$do_redirect}} );"},
{"trigger": "redirect_guess_404_permalink", "contents": "redirect_guess_404_permalink();"},
{"trigger": "register_activation_hook", "contents": "register_activation_hook(${1: ${2:\\$file}, ${3:\\$function}} );"},
{"trigger": "register_admin_color_schemes", "contents": "register_admin_color_schemes();"},
{"trigger": "register_column_headers", "contents": "register_column_headers(${1: ${2:\\$screen}, ${3:\\$columns}} );"},
{"trigger": "register_deactivation_hook", "contents": "register_deactivation_hook(${1: ${2:\\$file}, ${3:\\$function}} );"},
{"trigger": "register_default_headers", "contents": "register_default_headers(${1: ${2:\\$headers}} );"},
{"trigger": "register_importer", "contents": "register_importer(${1: ${2:\\$id}, ${3:\\$name}, ${4:\\$description}, ${5:\\$callback}} );"},
{"trigger": "register_meta", "contents": "register_meta(${1: ${2:\\$meta_type}, ${3:\\$meta_key}, ${4:\\$sanitize_callback}, ${5:\\$auth_callback}} );"},
{"trigger": "register_nav_menu", "contents": "register_nav_menu(${1: ${2:\\$location}, ${3:\\$description}} );"},
{"trigger": "register_nav_menus", "contents": "register_nav_menus(${1: ${2:\\$locations}} );"},
{"trigger": "register_post_status", "contents": "register_post_status(${1: ${2:\\$post_status}, ${3:\\$args}} );"},