Skip to content

Instantly share code, notes, and snippets.

View codytooker's full-sized avatar

Cody Tooker codytooker

View GitHub Profile
@codytooker
codytooker / us-states-insert-terms.php
Created September 7, 2017 22:49
US States to insert into a Wordpress Taxonomy
<?php
$states = array(
'Alabama',
'Alaska',
'Arizona',
'Arkansas',
'California',
'Colorado',
'Connecticut',
@codytooker
codytooker / acf-sync-user-and-cpt-bidirectional-relationship.php
Created January 18, 2018 21:27
Modified version of the bidirectional relationship function to help facilitate users to cpt relationships
<?php
/*
* This code is modified from the original here
* https://github.com/Hube2/acf-filters-and-functions/blob/master/acf-reciprocal-relationship.php
*
* Some comments may not be useful anymore since the modifications
*/