9 Snippets
<10 Favourites
<10 Downloads

test

echo 'test';

Escaping Data

// instead the _e(), __() or _x() use the escaped version _e('Email Summary', 'duplicator-pro'); // this…

Basic WP escaping functions

// ❌ Don't use _e(), __(), _x() etc. to output data // ✅ Use the escaped…

Escaping data with wp_kses

// ❌ Don't use html tags in escaping functions like esc_html, esc_attr and their localized equivalents…

HTML inside PHP

How to output HTML inside PHP.

TplMng

// This code is part of the template, $tplData['hasShellZip'] is provided through TplMng $hasShellZip = $tplData['hasShellZip'];…

Give export capability to administrator

This snippet adds the export capability to the administrator user role.

Reset Duplicator Pro capabilities

This snippet resets the Duplicator Pro capabilities. Insert it into the wp-config.php file, refresh the wp-admin…

Database connection test snippet

A snippet to test the connection to the database.