2014-07-07 229 views
0

我試圖獲得與鏈接到外部鏈接的鏈接標題相同的插件Pages Link To。我不想使用插件的原因是鏈接在保存帖子時動態生成,但我無法使用外部鏈接更新帖子的永久鏈接。將鏈接標題鏈接到外部鏈接而不是鏈接

下面是我的functions.php代碼:

function savepost($post_id) { 
    if($_POST['post_type'] == 'books'){ 
    $genre = strip_tags(get_field('genre')); 
    $author = strip_tags(get_field('author')); 
    $extlink = "http://www.".$genre."/".$author.".com"; 

    update_post_meta($post_id, 'extlink', $extlink); 

    $url = strip_tags(get_field('extlink',$post)); 
    update_post_meta($post_id, 'post_link', $url); 
} 
} 
add_action('save_post', 'savepost'); 

我嘗試中,我分配了一個模板後的另一種方法,這樣,當後加載它重定向到鏈接,但它不會重定向

我的代碼

<?php 
ob_start(); 
?> 
<?php 
/** 
* Template Name: post Redirection Template 
*/ 
get_header(); 

$redirecturl = strip_tags(get_field('extlink',$post)); 

wp_redirect($redirect_url); 

get_sidebar(); 
get_footer(); 

?> 
<?php 
ob_end_flush(); 
?> 

回答

1

你應該做的,就是插入外部鏈接的自定義字段中的文章編輯器,然後代替顯示自定義字段值。您可以使用插件(如Advanced Custom Fields)從自定義字段獲取URL。

編輯1:使用高級自定義字段插件作爲示例的更多說明。此示例的字段名稱是url

,無論你想自定義固定鏈接出現整個網站,比如你archive.phpcategory.php等更換,看起來像這樣的代碼,你應該使用這樣的:

<a href="<?php echo the_permalink();"><?php the_title(); ?></a> 

與此:

<?php 
$value = get_field("url"); 
if($value) { ?> 
<a href="<?php echo $value;?>"><?php the_title(); ?></a> 
<?php } else { ?> 
<a href="<?php echo the_permalink();"><?php the_title(); ?></a> 
<?php } ?> 

編輯2:澄清附加信息。

您可以爲主題的header.php添加一個函數,檢查url是否設置,然後重定向到外部鏈接,如果用戶直接進入永久鏈接,它仍會重定向它們。實際上,您可以使用此代碼而不使用上述代碼來顯示外部鏈接。

<?php 
$value = get_field("url"); 
if($value) { 
header('Location: '.$value); 
die(); 
} else {} ?> 

警告:確保任何HTML(或文本)之前使用此代碼已經被傳遞給瀏覽器,否則將無法正常工作。

+0

我更新了代碼並嘗試了你所說的,但它並沒有取代默認的永久鏈接..plz正確的代碼我似乎無法弄清楚什麼是錯的 – user3449454

+0

你在哪裏更新你的代碼?在上面的functions.php中? – michaelrmcneill

+0

是把它放在functions.php – user3449454