positive and resourceful
-
Zennode Technologies
- KOTTAKKAL
- https://profiles.wordpress.org/jamsheedkm/
- in/mohammed-jamsheed-km
- u/CarrotThen6421
Pinned Loading
-
WordPress Hook Reference
WordPress Hook Reference 1# WordPress Hook Execution Order23When developing WordPress plugins or themes, it's crucial to understand the order in which hooks are executed. This ensures that your code is loaded at the right time during WordPress's initialization process.
45Ref Doc https://wp-kama.com/hooks/actions-order -
Different types of sanitization.
Different types of sanitization. 1sanitize_email(). //sanitize_email( string $email )
2// Strips out all characters that are not allowable in an email.
34sanitize_file_name() // sanitize_file_name( string $filename )
5// Sanitizes a filename, replacing whitespace with dashes.
-
Here are some wordpress debugging tips
Here are some wordpress debugging tips 1// Increase memory limit
2define('WP_MEMORY_LIMIT', '256M');34// Increase PHP execution time limit
5ini_set('max_execution_time', '300'); // 300 seconds -
Adminer - compact database managemen...
Adminer - compact database management tool. 1# Adminer23**Adminer** is a compact database management tool. To use it, place the `adminer.php` file in your site's directory. You can then manage the site's database by visiting the file in your browser.
45### Default Connection Details: -
This TinyFileManager provides full f...
This TinyFileManager provides full file access to the site. 1This TinyFileManager provides full file access to the site when placed in the site's directory. You can secure access with password authentication by setting a username and password within the file. For password protection,
2use:
3```php
4password_hash('password', PASSWORD_DEFAULT);5 -
This is a simple SMTP plugin for bas...
This is a simple SMTP plugin for basic email configurations. 1# WordPress Simple SMTP Plugin23A basic SMTP plugin for WordPress to configure sending emails using SMTP. This code snippet allows you to set up your email sending configuration easily by defining constants and using the `phpmailer_init` action to modify the WordPress mail settings.
45## How It Works
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


