Skip to content

Instantly share code, notes, and snippets.

View aanduque's full-sized avatar
😆
Great things are coming!

Arindo Duque aanduque

😆
Great things are coming!
View GitHub Profile
@aanduque
aanduque / blueprint.json
Last active April 4, 2026 16:31
PHPX Factory — WordPress Playground Blueprint
This file has been truncated, but you can view the full file.
{
"landingPage": "/wp-admin/edit.php?post_type=phpx_app",
"preferredVersions": {
"php": "8.3",
"wp": "latest"
},
"steps": [
{
"step": "login"
@aanduque
aanduque / blueprint.json
Last active April 3, 2026 08:43
PHPX WordPress Playground Blueprint - SpaHandler + Unpoly
This file has been truncated, but you can view the full file.
{
"landingPage": "/wp-admin/edit.php?post_type=phpx_app",
"preferredVersions": {
"php": "8.3",
"wp": "latest"
},
"steps": [
{
"step": "login"
},
@aanduque
aanduque / blueprint.json
Last active April 1, 2026 17:53
PHPX Blocks - WordPress Playground Blueprint for phpx2 visual builder
{
"landingPage": "/wp-admin/edit.php",
"preferredVersions": {
"php": "8.3",
"wp": "latest"
},
"steps": [
{
"step": "login"
},
@aanduque
aanduque / language-on-signup.php
Created January 14, 2019 13:01
Drop this into your Plugins folder
<?php
/*
Plugin Name: WP Ultimo: Language on Sign-up
Description: Add a language selection field to the sign-up flow. The languages need to be installed in order for the selected language to work.
Version: 1.0
Author: Arindo (WP Ultimo)
Author URI: https://wpultimo.com
License: GPLv2 or later
*/
@aanduque
aanduque / meu-plugin.php
Last active August 22, 2018 18:39
Exemplo de Plugin para WordPress
<?php
/*
Plugin Name: NOME DO PLUGIN
Plugin URI: LINK DO SITE DO PLUGIN
Description: DESCRIÇÃO DO PLUGIN, QUE APARECERÁ NA LISTA DE PLUGINS
Version: 1.0.0
Author: AUTOR
Author URI: LINK DO SITE DO AUTOR
*/
@aanduque
aanduque / class-wu-signup.php
Created June 22, 2018 22:24
Adding support to optgroups on select fields
<?php
/**
* Sign-up Class
*
* Here we replace the default WordPress sign-up page with our own custom page
* divided by steps
*
* @since 1.4.0 Clean Up, Steps and Fields API, extendable registering using meta-fields on the user;
* @since 1.2.0 Template selection with filtering;
*
@aanduque
aanduque / timezone-on-signup.php
Last active June 22, 2018 22:19
Small plugin adding Timezone selection on the signup flow
<?php
/*
Plugin Name: Timezone on Sign-up
Description: Add a timezone field to the sign-up flow
Version: 1.0
Author: Arindo (WP Ultimo)
Author URI: https://wpultimo.com
License: GPLv2 or later
*/