Skip to content

Instantly share code, notes, and snippets.

View sstruemph's full-sized avatar

Steve Struemph sstruemph

View GitHub Profile
@ollietreend
ollietreend / acf-php-to-json.php
Last active April 22, 2024 11:12
Convert Advanced Custom Fields Pro configuration from PHP to JSON.
<?php
/**
* Plugin Name: Convert ACF PHP to JSON
* Description: Convert Advanced Custom Fields Pro configuration from PHP to JSON.
*/
namespace ConvertAcfPhpToJson;
/**
* Add submenu item under 'Custom Fields'
@fotinakis
fotinakis / _mdl_accordion.sass
Created September 11, 2015 21:55
(Material Design Light) MDL Accordion
// From @nickretallack - http://nickretallack.com/experiments/mdl/collapse/index.html
.mdl-accordion.mdl-accordion--opened
border-top: 1px solid #e0e0e0
border-bottom: 1px solid #e0e0e0
margin-top: -1px
.mdl-accordion.mdl-accordion--opened + .mdl-accordion.mdl-accordion--opened
border-top: none
margin-top: 0
@WebEndevSnippets
WebEndevSnippets / functions.php
Created December 8, 2012 01:06
Genesis: Remove Edit Link
/** Remove the edit link */
add_filter ( 'genesis_edit_post_link' , '__return_false' );