Display Post and Page IDs in WordPress Columns

This PHP code enables you to display the IDs of posts and pages within WordPress columns.…

Remove Gutenberg Block CSS

Remove Gutenberg Block Library CSS from loading on the frontend

Sending Geolocation Data Through Webhooks

This snippet works with the Geolocation and Webhooks addon. It allows you to send geolocation data…

<10

How to Populate a Form Field from an Anchor Link

/** * Populate field from anchor link. * * @link https://wpforms.com/developers/how-to-populate-a-form-field-from-an-anchor-link/ */ function wpf_dev_autofill_field() { ?>

<10

How to Add an Empty Dropdown to Dropdown Items

This snippet maintains a clean "--Select--" option without the zero price display when using the Dropdown…

<10

Change Location Taxonomy Options When its Registered

This filter can be used to change the taxonomy option to ‘hierarchical’

<10

Disable the AIOSEO Flyout Menu for Non-Administrator Users.

This snippet can be used to disable the AIOSEO flyout menu for non-administrator users.

<10

Add Image Alt Text automatic

function add_alt_text_to_images( $html ) { // Check if the image has a title attribute if (…

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…

<10

Change Twitter Title for a Specific Post

This filter can be used to Change the Twitter Title for a Specific Post. You can…

<10

Remove users from WP-JSON

Increase your site's security by hiding usernames from WP-JSON, that are otherwise exposed to the public.

Disable SEO News Dashboard Widget

This filter can be used to Disable SEO News Dashboard Widget.

<10

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(…

<10

Remove Google Fonts (non-Elementor)

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

Creating a Smart Tag from an ACF Field

/** * Register the Smart Tag so it will be available to select in the form…

<10
1 23 24 25 26 27 141