Skip to content

Instantly share code, notes, and snippets.

View brokenfunction's full-sized avatar
:electron:
Focusing

Roman Zviazok brokenfunction

:electron:
Focusing
View GitHub Profile
@jonbish
jonbish / Trash Redirect WordPress Plugin
Created October 22, 2012 17:18
301 Redirect trashed posts to the home page instead of a 404 page
<?php
/*
Plugin Name: Trash Redirect
Description: 301 Redirect trashed posts to the home page instead of a 404 page
*/
add_action('template_redirect', 'trash_redirect');
function trash_redirect(){
if (is_404()){
global $wp_query, $wpdb;