Skip to content

Instantly share code, notes, and snippets.

add_action( 'comment_form_before', 'action_function_6020' );
function action_function_6020( $args ){
$id = $_GET['id'];
// Gets id
}
{
// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
{
// Place your snippets for scss here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
@Aeonexe
Aeonexe / javascript
Created September 5, 2019 15:24
Snippets javascript
{
// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
@Aeonexe
Aeonexe / settings.json
Last active June 29, 2020 18:41
Personalización de tema para VS code
{
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"window.smoothScrollingWorkaround": true,
"window.titleBarStyle": "custom",
"search.location": "panel",
"workbench.iconTheme": "material-icon-theme",
"window.zoomLevel": -1,
"liveServer.settings.donotShowInfoMsg": true,
is_woocommerce()
is_shop()
is_product_category()
is_product_category( 'shirts' )
is_product_category( array( 'shirts', 'games' ) )
is_product_tag()
is_product_tag( 'shirts' )
is_product_tag( array( 'shirts', 'games' ) )
is_product()
is_cart()
@Aeonexe
Aeonexe / conditional-tags.php
Last active October 7, 2020 12:48
Wordpress referencia de tags condicionales
// A Single Post Page
is_single()
is_single( '17' )
is_single( 'Irish Stew' )
is_single( 'beef-stew' )
is_single( array( 17, 'beef-stew', 'Irish Stew' ) )
is_single( array( 17, 19, 1, 11 ) )
is_single( array( 'beef-stew', 'pea-soup', 'chili' ) )
is_single( array( 'Beef Stew', 'Pea Soup', 'Chili' ) )
@Aeonexe
Aeonexe / inde.php
Created September 28, 2018 23:42
Imprime el formulario de registro de wordpress en cualquier template.
<div id="register-form">
<form action="<?php echo site_url('wp-login.php?action=register', 'login_post') ?>" method="post">
<input type="text" name="user_login" value="Username" id="user_login" class="input" />
<input type="text" name="user_email" value="E-Mail" id="user_email" class="input" />
<?php do_action('register_form'); ?>
<input type="submit" value="Register" id="register" />
</form>
</div>
{
"workbench.colorTheme": "Night Rider",
"atomKeymap.promptV3Features": true,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"window.smoothScrollingWorkaround": true,
"window.titleBarStyle": "custom",
"search.location": "panel",
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 13,
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/