Skip to content

Instantly share code, notes, and snippets.

@stevecordle
stevecordle / add_menu_items_to_all_sites.php
Created July 9, 2015 14:58
Adding a Marketing Tips menu Item to every site on Wordpress MU network
$site_args = array(
'network_id' => $wpdb->siteid,
'public' => null,
'archived' => null,
'mature' => null,
'spam' => null,
'deleted' => null,
'limit' => 1000,
'offset' => 0
);
@stevecordle
stevecordle / pom.xml
Last active August 29, 2015 14:22
POM.XML bukkit plugin setup
http://wiki.bukkit.org/Plugin_Tutorial
http://www.spigotmc.org/wiki/spigot-maven/
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
@stevecordle
stevecordle / hooks.php
Last active October 14, 2021 18:17
Disable ajax on all gravity forms
/*
Gravity Forms => 1.9
*/
add_filter('gform_form_args', 'no_ajax_on_all_forms', 10, 1);
function no_ajax_on_all_forms($args){
$args['ajax'] = false;
return $args;
}