Disable All Page Builder Integration

This filter can be used to completely disable our page builder integration for all builders.

<10

Remove Google Fonts (non-Elementor)

function disable_google_fonts() { return false; } add_filter( 'print_google_fonts', 'disable_google_fonts' );

Remove the Article schema from Posts

This snippet removes the Article schema from Posts

<10

Change Default Post Type Plural Label “Locations”

This filter can be used to change the default post type plural label from “Locations” to…

<10

Enable HTTP Strict Transport Security (HSTS) in WordPress

The provided code snippet is a WordPress function that enables a WordPress site's HTTP Strict Transport…

<10

increase upload memory

upload_max_filesize = 256M post_max_size = 256M max_execution_time = 300 />

Hide Business Info Phone Number from the Front End

This filter can be used to hide business info phone number from the front end.

<10

WPCode Add New Snippet Skip Library Screen

This snippet enables you to skip the snippet library screen when adding a new snippet in…

<10

Exclude a Specific Term from the Sitemap

This filter can be used to Exclude a Specific Term from the Sitemap. Note: Replace 412…

<10

Disable All Admin Notices individually

function disable_all_admin_notices() { remove_all_actions('admin_notices'); } add_action('admin_init', 'disable_all_admin_notices');

Continue Shopping Button

/** * Add Continue Shopping Button on Cart Page * Add to theme functions.php file or…

Carla Mawyin
<10

Admin Bar - Updates

Show updates in Admin Bar

Change Default Post Type Singular Label “Location”

This filter can be used to change the default post type singular label from “Location” to…

<10

Hide the last item in the breadcrumb trail

This filter can be used to hide the last item in the breadcrumb trail.

<10
1 10 11 12 13 14 78