我試圖獲得與鏈接到外部鏈接的鏈接標題相同的插件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();
?>
我更新了代碼並嘗試了你所說的,但它並沒有取代默認的永久鏈接..plz正確的代碼我似乎無法弄清楚什麼是錯的 – user3449454
你在哪裏更新你的代碼?在上面的functions.php中? – michaelrmcneill
是把它放在functions.php – user3449454