Skip to content

Instantly share code, notes, and snippets.

View crisgaret's full-sized avatar

crisgaret crisgaret

View GitHub Profile
<?php
/*
Plugin Name: Ninja Forms - Webhooks Auth Headers
*/
add_filter( 'nf_remote_post_args', 'nf_wh_add_auth' );
function nf_wh_add_auth( $args ){
$headers = array(
@crisgaret
crisgaret / Breadcrumbs.md
Last active December 19, 2015 05:39
Add a list structure to Drupal's breadcrumbs, and include the page title. Most of the code is from the Drupal API page.

Add some breadcrumbs

<?php
/* Put Breadcrumbs in a ul li structure */
function THEMENAME_breadcrumb($variables) {
  $breadcrumb = $variables['breadcrumb'];
  $title = drupal_set_title();
  if (!empty($breadcrumb)) {
    $crumbs = '<ul >';
 foreach(