I can't even find the version of WP I am using bc this error keeps popping up:
Parse error: syntax error, unexpected '<' in /home/content/89/4546489/html/wp-content/themes/FlexxProfessional/FlexxProfessional/functions.php on line 8
HELP! I was just trying to fix a calendar error using this entry:
Your diagnostic was the good : it's a problem of magic quotes.
Here a fix : paste the following code in functions.php of your theme :
<?php if ( get_magic_quotes_gpc() ) { $_POST = array_map( 'stripslashes_deep', $_POST ); $_GET = array_map( 'stripslashes_deep', $_GET ); $_COOKIE = array_map( 'stripslashes_deep', $_COOKIE ); $_REQUEST = array_map( 'stripslashes_deep', $_REQUEST ); } ?>
I pasted it in the right php doc and now I can't get in to change anything!
Everything is down. I am still logged in to the WP admin but everytime I click the error pops up... what to do??!!!