Skip to content

Instantly share code, notes, and snippets.

@benilla
benilla / main.js
Created September 14, 2018 16:59
PHP / WORDPRESS - Mailchimp Sub
jQuery(document).ready(function($) {
function list_sub(form, btn){
input = {
action : 'actionSubscribe',
group_id : $('.form-subscribe input[name=form-subscribe-type]:checked').val(),
fname : form.find('.inputFname').val(),
lname : form.find('.inputLname').val(),
email : form.find('.inputEmail').val(),
@benilla
benilla / search.php
Created April 26, 2017 02:48
WP User Geolocation Search (Haversine formula)
<?php
function search_therapists($results = -1, $address = '', $return = false) {
global $wpdb;
//Prep array for output
$output = array();
//Query
@benilla
benilla / Wordpress Theme Folder Structure.md
Last active February 28, 2017 17:06
Wordpress Theme Folder Structure
@benilla
benilla / form.html
Last active March 15, 2018 07:51
Slim Image Cropper Wordpress Upload
<!DOCTYPE html>
<meta charset="utf-8">
<title>Form</title>
<div class="slim">
<input type="file" name="slim[]"/>
</div>
...
@benilla
benilla / wordpress_geo_search_query.md
Last active January 30, 2021 05:12
Wordpress Geo Search Query

###Wordpress Geo Search Query

Extend Wordpress query to return posts within a radius of an address (plus optional filters) and order the resulting posts by proximity.

@benilla
benilla / wordpress_mailchimp_api3_subscribe.md
Last active April 21, 2016 00:44
Wordpress + Mailchimp api v3: One click subscribe to Mailchimp list

Wordpress + Mailchimp api v3: One click subscribe to Mailchimp list

Quick and easy setup to integrate a one click subscribe field

@benilla
benilla / wordpress_cron_unschedule_single_event.md
Last active November 29, 2022 07:42
Wordpress cron: Unschedule all specified single events

Wordpress cron: Unschedule all specified single events