Category: Admin
Microsoft Web Master Tool
Advanced Spam Filters for Elementor Forms
/** START ELEMENTOR FORM SPAM PROTECTION **/ add_action( ‘elementor_pro/forms/validation’, function ( $record, $handler ) { // Make sure the form is an instance of Form_Record class if ( ! $record instanceof \ElementorPro\Modules\Forms\Classes\Form_Record ) { return; } $raw_fields = $record->get(‘fields’); $fields…Continue reading
Google Tag Manager
Google Tag Manager Head
TplMng
// This code is part of the template, $tplData[‘hasShellZip’] is provided through TplMng $hasShellZip = $tplData[‘hasShellZip’]; if ($hasShellZip) { esc_html_e(‘The “Shell Zip” mode allows…’, ‘duplicator-pro’); ?>Continue reading
HTML inside PHP
// ❌ The output of this function is not readable public function displayHtml() { //some logic here echo ‘ ‘; echo ‘‘; echo ‘‘; echo __(‘Some text’, ‘duplicator-pro’); echo ‘ ‘; } // ❌ This function needs to escape large…Continue reading
Escaping data with wp_kses
// ❌ Don’t use html tags in escaping functions like esc_html, esc_attr and their localized equivalents // Expected output: This part of the text is bold and this part underlined. esc_html_e( ‘This part of the text is bold and this…Continue reading
Basic WP escaping functions
// ❌ Don’t use _e(), __(), _x() etc. to output data // ✅ Use the escaped versions instead esc_html_e(), esc_html__(), esc_html_x() etc. // ❌ Don’t echo any HTML attributes without escapingContinue reading
Adds the ‘tinymce_abbr_class’ button to the ‘Basic’ toolbar in the ACF WYSIWYG editor
/** * Adds the ‘tinymce_abbr_class’ button to the ‘Basic’ toolbar in the ACF WYSIWYG editor. * * Hooks into the ACF WYSIWYG toolbar configuration to append the ‘tinymce_abbr_class’ button * to the ‘Basic’ toolbar. It checks if the ‘Basic’ toolbar…Continue reading