View Single Post
02-04-2012, 07:26 PM
#4
Michael C is offline Michael C
Michael C's Avatar
Status: Senior Member
Join date: Jul 2006
Location: Scotland, East Lothian
Expertise:
Software:
 
Posts: 888
iTrader: 4 / 100%
 

Michael C is on a distinguished road

Send a message via MSN to Michael C

  Old

Isn't information inputted in a meta box also available as a custom-field? At least it is the way I do it. If you show the custom fields you should see the id with value. I don't see whats wrong with:

PHP Code:
function affiliate_hide() { 
global 
$wp_query

 
$my_meta get_post_meta($post->ID,'_my_meta',TRUE);
if( isset( 
$my_meta['link'] )) {  
    
$target $my_meta['link'];   
        if(
$target == '') {  
        
wp_redirect(get_option('siteurl')); exit; // if no blog post redirects to index page. 
        

    
wp_redirect($target301); 
    exit; 
    }