Skip to content

Instantly share code, notes, and snippets.

View mourique's full-sized avatar
🙅‍♂️
ich möchte einfach nur hier sitzen

Felix mourique

🙅‍♂️
ich möchte einfach nur hier sitzen
View GitHub Profile
/* Kill attachment, search, author, daily archive pages */
add_action('template_redirect', 'custom_template_redirect');
function custom_template_redirect(){
global $wp_query, $post;
if (is_author() || is_attachment() || is_day() || is_search() || is_category())
{
$wp_query->set_404();
}
@mourique
mourique / mysql dump
Created May 2, 2011 12:08
Some mysql oneliners
# getting stuff out
mysqldump --default-character-set=utf8 --max_allowed_packet=32M --opt -hHOST -uUSER -pPASSWORD DATABASE > database.sql
# getting stuff in
mysql --default-character-set=utf8 --max_allowed_packet=32M -hHOST -uUSER -pPASSWORD DATABASE < database.sql