Last active
September 25, 2024 17:36
-
-
Save everaldomatias/72790c746414344476f2d3a90cc46269 to your computer and use it in GitHub Desktop.
VS Code PHP/WP snippets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"If Simples": { | |
"prefix": "ifs", | |
"body": [ | |
"if ( $1 ) {", | |
"$2", | |
"}" | |
], | |
"description": "Imprime uma condição if simples" | |
}, | |
"If Simples no HTML": { | |
"prefix": "<ifs", | |
"body": [ | |
"<?php if ( $1 ) {", | |
"$2", | |
"} ?>" | |
], | |
"description": "Imprime uma condição if simples diretamente no HTML" | |
}, | |
"Print var_dump()": { | |
"prefix": "vd", | |
"body": [ | |
"echo '<pre>';", | |
"\tvar_dump ( $1 );", | |
"echo '</pre>';" | |
], | |
"description": "Imprime var_dump()" | |
}, | |
"Print eval(\\psy\\sh());": { | |
"prefix": "psy", | |
"body": "eval(\\psy\\sh());", | |
"description": "Imprime eval()" | |
}, | |
"Print eval(\\psy\\sh()) com die();": { | |
"prefix": "psyd", | |
"body": "eval(\\psy\\sh()); die();", | |
"description": "Imprime eval() com die()" | |
}, | |
"Print do_action( 'logger', $args );": { | |
"prefix": "logger", | |
"body": "do_action( 'logger', $1 );", | |
"description": "Imprime do_action( 'logger', $args );" | |
}, | |
"Print do_action( 'qm/debug', $args );": { | |
"prefix": "qm", | |
"body": "do_action( 'qm/debug', $1 );", | |
"description": "Imprime do_action( 'qm/debug', $args );" | |
}, | |
"WP_CLI::log( print_r( $args ) );": { | |
"prefix": "wpclilog", | |
"body": [ | |
"\\WP_CLI::log( print_r( $1 ) );", | |
"\\WP_CLI::log( '#####################################' );" | |
], | |
"description": "Imprime WP_CLI::log( print_r( $args ) );" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment