Skip to content

Instantly share code, notes, and snippets.

@chetmac
chetmac / Airpress Query Multiple Sort Fields
Created August 14, 2020 16:29
Airpress: Sort on multiple fields using the Airpress plugin's php api
<?php
$query->sort(
[
["field" => "My First Airtable Field", "direction" => "DESC"],
["field" => "My Second Airtable Field", "direction" => "ASC"]
]
);
@chetmac
chetmac / functions.php
Created June 8, 2019 17:17
Wordpress Shortcode for embedding form with prefilled fields
<?php
// [airtableform form_id="shr1St9pPOAptb7r8"]
function airtableform_func( $atts ) {
$a = shortcode_atts( array(
'form_id' => '',
'width' => '100%',
'height' => '533',
'color' => 'red',