Skip to content

Instantly share code, notes, and snippets.

@everaldomatias
Last active September 25, 2024 17:36
Show Gist options
  • Save everaldomatias/72790c746414344476f2d3a90cc46269 to your computer and use it in GitHub Desktop.
Save everaldomatias/72790c746414344476f2d3a90cc46269 to your computer and use it in GitHub Desktop.
VS Code PHP/WP snippets
{
"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