Skip to content

Instantly share code, notes, and snippets.

@tomhazledine
tomhazledine / convert_number_to_words.php
Last active July 6, 2019 00:34
Convert Numbers Into Words
<?php
/**
* DISPLAY NUMBERS
*
* Convert raw numbers into human-readable words.
*
* Borrowed (and very much simplified) from:
* http://www.karlrixon.co.uk/writing/convert-numbers-to-words-with-php/
* @param integer $number Raw number.
* @return string Number as a word.
@trslater
trslater / custom-registration.php
Last active May 12, 2020 13:47
Custom Registration Plugin
<?php
/*
Plugin Name: Custom Registration
Description: Updates user rating based on number of posts.
Version: 1.1
Author: Tristan Slater w/ Agbonghama Collins
Author URI: http://kanso.ca
*/
@ashfame
ashfame / snippet.php
Created March 19, 2014 20:20
Querying post relationships in reverse direction when using Advanced Custom Fields plugin on WordPress
<?php
$tour_pages = get_posts(
array(
'post_type' => 'tour',
'meta_query' => array(
array(
'key' => 'tour_author_relationship', // name of custom field
'value' => '"' . get_the_ID() . '"',
'compare' => 'LIKE'
)