Skip to content

Instantly share code, notes, and snippets.

View asterion's full-sized avatar

Marcos Matamala Fernández asterion

View GitHub Profile
@asterion
asterion / comparacion.c
Created May 30, 2017 14:35
comparacion de código
public class Hola
{
public static void main()
{
System.Console.Writeline("Aca Esto");
}
}
@asterion
asterion / or_category.php
Created June 14, 2017 16:28
or category
$args = array(
'post_type' => 'post',
'tax_query' => array(
'relation' => 'OR',
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array( 'cat1' ),
),
array(
@asterion
asterion / functions.php
Created June 15, 2017 20:10
cookie set wordpress
<?php
add_action( 'init', 'set_cookies_banner' );
function set_cookies_banner() {
$banner_id = 1;
if (isset($_GET['banner_id']) && is_numeric($_GET['banner_id'])) {
$banner_id = $_GET['banner_id'];
}
@asterion
asterion / refill.rb
Created June 15, 2017 22:23
rellenar un hash en ruby
meses = {
"ENERO" => [0],
"FEBRERO" => [0],
"MARZO" => [0],
"ABRIL" => [0],
"MAYO" => [0],
"JUNIO" => [0],
"JULIO" => [0],
"AGOSTO" => [0],
"SEPTIEMBRE" => [0],
@asterion
asterion / update_siteurl.sql
Created June 26, 2017 22:02
cambiar home y siteurl options de wp
update wp_options set option_value = '<aqui debe ir la url/ip>' where option_name = 'home' or option_name = 'siteurl';
@asterion
asterion / db_delete.php
Last active June 27, 2017 18:08
Nadie puede poner un die en un if
<?php
$cod_item = limpiar($_POST['cod_item']);
$sql = "SELECT * FROM content WHERE code = '$cod_item'";
$result = $con->query($sql) or die ($con->error);
if ($result->num_rows > 0) {
}
@asterion
asterion / envio_mail.php
Last active June 28, 2017 17:51
Envio de email usando wp, prueba.
<?php
$uploaddir = trim(ABSPATH, '/') . DIRECTORY_SEPARATOR . 'uploads' . DIRECTORY_SEPARATOR;
$attachments = [];
foreach ($_FILES as $i => $data) {
$uploadfile = $uploaddir . basename($data['name']);
if (move_uploaded_file($data['tmp_name'], $uploadfile)) {
$attachments[$i] = $uploadfile;
}
}
@asterion
asterion / group_max.sql
Created July 7, 2017 01:59
group by con max
SELECT nombre, apellido, MIN(edad) AS edad FROM personas GROUP BY nombre, apellido
@asterion
asterion / permiso_wp.php
Last active July 7, 2017 18:55
otorgar permiso de subir multimedia
<?php
function allow_contrib_upload() {
$contrib = get_role( 'contributor' );
$contrib->add_cap( 'upload_files' );
}
add_action( 'admin_init', 'allow_contrib_upload', 11 );
@asterion
asterion / query.php
Created July 24, 2017 22:20
prueba query_posts
<?php
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1;
// The Query
query_posts( 'posts_per_page=3&paged=' . $paged );
// The Loop
while ( have_posts() ) : the_post();
echo '