Skip to content

Instantly share code, notes, and snippets.

@nathaningram
nathaningram / 2025-mu-dashwidgets.php
Last active December 1, 2025 20:47
Starter Site 2025 - MU Dashboard Widgets
<?php
/*
Plugin Name: Custom Dashboard Widgets
Plugin URI: https://wpnathan.com
Description: Creates Custom Dashboard Widgets for Client Websites
Version: 1.0
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / 2025-mu-gravity.php
Created December 1, 2025 20:44
Starter Site 2025 - MU Gravity Forms
<?php
/*
Plugin Name: Custom Functions for Gravity Forms
Plugin URI: https://wpnathan.com
Description: Customize Gravity Forms Default Behavior
Version: 1.0
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / 2025-mu-beaver.php
Last active December 1, 2025 20:49
Starter Site 2025 - MU Beaver Builder
<?php
/*
Plugin Name: Custom Functions for Beaver Builder
Plugin URI: https://wpnathan.com
Description: Extend and Customize Beaver Builder
Version: 1.0
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / 2025-mu-media.php
Created December 1, 2025 20:38
Starter Site 2025 - MU Media
<?php
/*
Plugin Name: Custom Media Handling Functions
Plugin URI: https://wpnathan.com
Description: Customize WordPress Default Media Behavior
Version: 1.0
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / 2025-mu-shortcodes.php
Last active December 1, 2025 20:37
Starter Site 2025 - MU Shortcodes
<?php
/*
Plugin Name: Custom Shortcodes
Description: Add Custom Shortcodes
Plugin URI: https://wpnathan.com
Version: 1.0
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / 2025-mu-security.php
Last active December 1, 2025 20:48
Starter Site 2025 - MU Security
<?php
/*
Plugin Name: Custom Security Functions
Description: Customized WP Security
Version: 1.0
Plugin URI: https://wpnathan.com
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / 2025-mu-dashboard.php
Last active December 1, 2025 20:48
Starter Site 2025 - MU Dashboard
<?php
/*
Plugin Name: Custom Dashboard Functions
Description: Customize the WP Admin
Version: 1.0
Plugin URI: https://wpnathan.com
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / 2025-mu-core.php
Last active December 1, 2025 20:36
Starter Site 2025 - MU Core
<?php
/*
Plugin Name: Custom Core Functions
Description: Customize the WP Core
Version: 1.0
Plugin URI: https://wpnathan.com
Author: Nathan Ingram
Author URI: https://wpnathan.com
License: GPL2
*/
@nathaningram
nathaningram / sir.php
Created March 24, 2025 13:37
Smart Image Resize (SIR) - exclude image sizes from being altered
// Exclude Image Sizes from SIR Plugin
// List all sizes to be excluded in the list below
add_filter('wp_sir_exclude_sizes', function() {
return [
'woocommerce_gallery_thumbnail',
'thumbnail',
'medium',
'medium_large',
'large',
'news_grid',
@nathaningram
nathaningram / stupidity.css
Created February 27, 2025 19:49
Avada Columns
/* Responsive grid for portfolio layout */
.fusion-portfolio-wrapper {
display: grid;
grid-template-columns: repeat(3, 1fr); /* 3 columns on large screens */
gap: 20px;
justify-content: center;
align-items: start;
}
/* Responsive adjustments for tablets (768px and up) */