This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ( isset($_GET['debug']) && $_GET['debug'] == 'debug') | |
define('WP_DEBUG', true); | |
/* Code goes into config.php | |
add ?debug=debug to a URL and see what's causing the trouble | |
change the second 'debug' to a diff key => anonymous/secure. | |
add_action('all', create_function('', 'var_dump(current_filter());')); | |
//show all hooks and filters in source |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Redirect 301 /wp-config.php http://svr.gov.ru/honeyd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
remove_action('genesis_post_title', 'genesis_do_post_title'); // remove page titles |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a[href^="http://"] { /* fully valid URL, likely external link */ | |
} a[href="http://google.com"] { /* link to specific website */ | |
} a[href^="/"], a[href^=".."] { /* internal relative link */ | |
} a[href^="mailto:"] { /* email link */ | |
} a[href$=".pdf"] { /* PDF file */ | |
} a[href$=".doc"] { /* Microsoft Word document */ | |
} a[href$=".mp3"] { /* Music file */ | |
} a[href$=".zip"] { /* Archive file */ | |
} |
NewerOlder