Skip to content

Instantly share code, notes, and snippets.

@nathaningram
nathaningram / bww-site-info.php
Last active December 16, 2024 17:08
Starter Site 2024 - Site Info MU Plugin
<?php
/*
Plugin Name: BWW - Site Info
Description: Adds Schema, GA/GSC Tags, Form Emails, and Other Data base on Site Info Settings
Version: 2025.01
Plugin URI: https://brilliantly.net
Author: Brilliant Web Works, Inc.
Author URI: https://brilliantly.net
License: GPL2
@nathaningram
nathaningram / kadence-fluid-typography.php
Last active December 13, 2024 21:34
Kadence Fluid Typography
<?php
/**
* Plugin Name: Fluid Typography - Kadence
* Description: Custom typography using Kadence's size system (xs, s, m, l, xl, xxl)
* Version: 2024.12.13
* Author: Nathan Ingram
* License: GPL-2.0+
* Text Domain: fluid-typography-kadence
*/
@nathaningram
nathaningram / mu-dashwidgets.php
Last active November 22, 2024 21:25
Starter Site 2024 Course - MU Dashboard Widgets
<?php
/*
Plugin Name: Custom Dashboard Widgets
Plugin URI: https://wpnathan.com
Description: Creates Custom Dashboard Widgets for Client Websites
Version: 2024.11
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / mu-gravity.php
Last active December 17, 2024 17:23
Starter Site 2024 Course - MU Gravity Forms
<?php
/*
Plugin Name: Custom Functions for Gravity Forms
Plugin URI: https://wpnathan.com
Description: Customize Gravity Forms Default Behavior
Version: 2024.11
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / mu-beaver.php
Last active November 20, 2024 15:33
Starter Site 2024 Course - MU Beaver Builder
<?php
/*
Plugin Name: Custom Functions for Beaver Builder
Plugin URI: https://wpnathan.com
Description: Extend and Customize Beaver Builder
Version: 2024.11
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / mu-media.php
Last active December 19, 2024 21:01
Starter Site 2024 Course - MU Media
<?php
/*
Plugin Name: Custom Media Handling Functions
Plugin URI: https://wpnathan.com
Description: Customize WordPress Default Media Behavior
Version: 2024.11
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / mu-security.php
Last active November 20, 2024 15:36
Starter Site 2024 Course - MU Security
<?php
/*
Plugin Name: Custom Security Functions
Description: Customized WP Security
Version: 2024.11
Plugin URI: https://wpnathan.com
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / mu-dashboard.php
Last active November 12, 2024 02:53
Starter Site 2024 Course - MU Dashboard
<?php
/*
Plugin Name: Custom Dashboard Functions
Description: Customize the WP Admin
Version: 2024.11
Plugin URI: https://wpnathan.com
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / mu-core.php
Last active November 28, 2025 05:19
Starter Site 2024 Course - MU Core
<?php
/*
Plugin Name: Custom Core Functions
Description: Customize the WP Core
Version: 2024.11
Plugin URI: https://wpnathan.com
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / no-tags.php
Created October 17, 2024 18:11
No Mo Tags
// This is not fully tested :)
function bww_disable_tags_support() {
// Unregister tags from posts
unregister_taxonomy_for_object_type('post_tag', 'post');
// Remove tags from post types (including custom post types)
foreach (get_post_types() as $post_type) {
unregister_taxonomy_for_object_type('post_tag', $post_type);
}