Skip to content

Instantly share code, notes, and snippets.

View pochitax's full-sized avatar
🦄

Paola Véliz pochitax

🦄
  • Chile
View GitHub Profile
@pochitax
pochitax / functions.php
Created November 18, 2025 18:44
Funciones para editar la API REST
/* Agregar configuración de GraphQL */
add_action( 'graphql_register_types', function() {
register_graphql_field( 'Post', 'nombreDelPersonaje', [
'type' => 'String',
'description' => 'Campo Película de SCF',
'resolve' => function( $post ) {
// Funciona con SCF porque SCF emula ACF
return get_field('nombre_del_personaje', $post->ID);
// o alternativamente: return get_post_meta($post->ID, 'pelicula', true);
@pochitax
pochitax / script-graph.js
Created October 31, 2025 13:06
función graphQL
// tu función GraphQL
function getPeliculasGraph(token) {
const query = `
query {
posts {
nodes {
title
pelicula
}
}
@pochitax
pochitax / retornar-token.js
Created October 31, 2025 13:04
retornar el token
// FUNCIÓN PARA OBTENER EL TOKEN
fetch('http://localhost:8888/wp-headless/wordpress/wp-json/jwt-auth/v1/token', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
username: 'admin',
password: 'admin123'
})
})
@pochitax
pochitax / fragmento.php
Created October 31, 2025 13:02
para el functions
/** AGREGAR CONFIGURACIÓN DE SECURE CUSTOM FIELDS */
add_action( 'graphql_register_types', function() {
register_graphql_field( 'Post', 'pelicula', [
'type' => 'String',
'description' => 'Campo Película de SCF',
'resolve' => function( $post ) {
// Funciona con SCF porque SCF emula ACF
return get_field('pelicula', $post->ID);
// o alternativamente: return get_post_meta($post->ID, 'pelicula', true);
@pochitax
pochitax / filter.html
Created September 12, 2025 16:03
Filtros Api
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
<style>
.card img {
object-fit: contain;
@pochitax
pochitax / async-await.html
Created August 29, 2025 22:35
Callback, Promise, Fetch y Async-Await
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.7/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-LN+7fdVzj6u52u30Kp6M/trliBMCMKTyK833zpbD+pXdCLuTusPj697FH4R/5mcr" crossorigin="anonymous">
<style>
.card img {
object-fit: contain;
@pochitax
pochitax / meta.html
Created October 16, 2024 15:53
Ejemplo Etiquetas Open Graph
<meta property="og:title" content="El título de su página aquí" />
<meta property="og:type" content="website" />
<meta property="og:URL" content="https://www.tudominio.com" />
@pochitax
pochitax / lista-schema.html
Created September 26, 2024 01:34
Listado de personas con Schema
<div class="container">
<div class="row">
<div class="col-12 my-5">
<h1>Profesionales de la V región</h1>
</div>
</div>
<div class="row">
<div class="col-4">
<div class="card p-4 text-center" itemscope itemtype="https://schema.org/Person">
<img src="https://avatar.iran.liara.run/public/job/doctor/female" class="card-img-top" alt="">
@pochitax
pochitax / lista.html
Created September 26, 2024 01:33
Listado de personas sin Schema
<div class="container">
<div class="row">
<div class="col-12 my-5">
<h1>Profesionales de la V región</h1>
</div>
</div>
<div class="row">
<div class="col-4">
<div class="card p-4 text-center">
<img src="https://avatar.iran.liara.run/public/job/doctor/female" class="card-img-top" alt="...">
@pochitax
pochitax / meta.html
Created September 26, 2024 01:09
Atributos meta en el head para SEO
<!DOCTYPE html>
<html lang="es">
<!-- CABECERA DE DATOS -->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chocolatería Viñamarina</title>
<meta name="description" content="Chocolatería Viñamarina ofrece los mejores chocolates artesanales de la V Región. Ven a conocer nuestra tienda ubicada en Calle Valparaíso nº679.">
<!-- una buena descripción debe oscilar entre los 120 a 160 caracteres, incluyendo espacios y puntuaciones -->
<meta name="keywords" content="Chocolatería Viñamarina, Chocolate, Chocolate artesanal en Viña del Mar">