All pastes #803346 Raw Edit

Mine

public php v1 · immutable
#803346 ·published 2007-12-01 03:16 UTC
rendered paste body
<?php/*Plugin Name: Super Simple Page-to-Forum RedirecterPlugin URI: #Description: Made custom for Mystalic!Author: Trevor FitzgeraldVersion: 0.1Author URI: http://www.trevorfitzgerald.com/*//* * Replace 'Forum' with the name of the page, the page slug, or the page's # id. */function redirect_to_forum() {	if ( is_page('Forum') )		wp_redirect('http://wordpress.org/support/');}add_action('get_header', 'redirect_to_forum');?>