Skip to content

Instantly share code, notes, and snippets.

View wherd's full-sized avatar
🏠
Working from home

wherd wherd

🏠
Working from home
  • Porto, Portugal
View GitHub Profile
#!/bin/bash
# ============================================================================
# Simple Debian Server Setup Script for Static Hugo Site
# Run this script as root on a fresh Debian installation
# ============================================================================
set -e # Exit on any error
# Colors for output
@wherd
wherd / class-wr-model.php
Last active March 9, 2018 12:59
Base table model class to use with WordPress.
<?php
/**
* Define the base table model class.
*
* @package WR_Model
* @author Sérgio 'wherd' Leal <hello@wherd.name>
*/
/**
* Base model class.
@wherd
wherd / class-wr-virtual-pages.php
Last active October 14, 2021 00:11
Virtual page is a page that is rendered by the WordPress engine but it's not found on the database.
<?php
/**
* Virtual page is a page that is rendered by the WordPress engine but it's not found on the database.
*
* @package Virtual_Pages
* @author Sérgio 'wherd' Leal <hello@wherd.name>
* @license https://opensource.org/licenses/MIT MIT
*/
/**