Jump to content

WordPress: Forward singular posts to page


pealo86

Recommended Posts

I'm using the following code as I don't want people to view singular custom posts. If they try to visit one, I want them to get forwarded to a page:

 

<?php

// forward necessary single custom posts
$forward = 0;

if(is_singular('external-link')) {
	$location = get_permalink(12);
	$forward = 1;
}
if ($forward == 1) {
	header('Location: ' . $location);
}
exit;

?>

 

However even with error reporting turned on I just get a blank white screen.

 

I normally use the following script on most websites I make:

 

<?php
// forward necessary single custom posts

if(is_singular('external-link')) {
	$location = get_permalink(12);
	$forward = 1;
}
if ($forward) {
	header('Location: ' . $location);
}
exit;
?>

 

However on this site it is just giving me this error:

Notice: Undefined variable: forward in /home/devspare/public_html/wp-content/themes/sparetimetocash/header.php on line 8

 

Can anyone see any issues?? It seems like if I resolve the error messages all I get is a white screen of death

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.