Display Featured Image in Post List
Make featured image visible in post list and quick edit view for any kind of post…
Allow Webp, SVG, ICO
A Pro Snippet
increase upload memory
upload_max_filesize = 256M post_max_size = 256M max_execution_time = 300 />
Disable Custom Link Format of AIOSEO in the Block and Classic Editors
This snippet can be used to disable the custom link format that All in One SEO…
Disable All Page Builder Integration
This filter can be used to completely disable our page builder integration for all builders.
Disable Update Emails
// Disable auto-update email notifications add_filter('auto_core_update_send_email', 'disable_auto_update_emails', 10, 4); function disable_auto_update_emails($send, $type, $core_update, $result) { if…
Remove the Article schema from Posts
This snippet removes the Article schema from Posts
Disable the AIOSEO Flyout Menu for Non-Administrator Users.
This snippet can be used to disable the AIOSEO flyout menu for non-administrator users.
Dynamically Change the SEO Title of a Specific Term Before the Metadata is Saved
The code snippet below can be used to dynamically change the SEO title of a specific…
Custom Style Icons for Rating field
This snippet will customize your rating icons in the Rating field
How to Restrict Numbers in a Single Line Text Form Field
/** * Disallow numbers in a single-line text field * * @link https://wpforms.com/developers/how-to-restrict-numbers-in-a-single-line-text-form-field/ */ function wpf_dev_disallow_numbers_text_field(…
How to Add Address Field Validation For Authorize.net
/** * Add address validation for Authorize.net address fields * * @link https://wpforms.com/developers/how-to-add-address-field-validation-for-authorize-net/ */ function wpf_dev_authorize_address_validation(…
How to Disable Browser Autocomplete for Form Fields - all fields
/** * Disable form autocomplete for all fields on a specific form * * @link https://wpforms.com/developers/disable-browser-autocomplete-for-form-fields/…
How to Conditionally Show the Next Button on a Specific Page
/** * Hide Next button on page 2 by default and show it once an option…
Display Post and Page IDs in WordPress Columns
This PHP code enables you to display the IDs of posts and pages within WordPress columns.…