如何在使用高級自定義字段表單提交新帖子後重定向用戶?如何在使用acf表單提交後重定向?
文檔說:
<?php
$args = array(
'post_id' => 'new_1',
'field_groups' => array(357),
'submit_value' => 'Submit Story',
'return' => '%post_url%'
);
acf_form($args);
?>
但我得到一個空白頁。評論後
更新,仍然是一個空白頁:
acf_form(array(
'post_id' => 'new_post',
'post_title' => true,
'post_content' => true,
'return' => add_query_arg('updated', 'true', get_permalink())
));
也試過這個鉤子在功能上,還是空白。
function my_acf_save_post($post_id) {
wp_redirect(get_permalink($post_id)); exit;
}
add_action('acf/save_post', 'my_acf_save_post', 20);
注意
的職位是壽
嘗試使用'return'=> add_query_arg('updated','true',get_permalink()),? – vel
@vel謝謝,我試過但沒有,我得到一個空白頁。檢查我的問題,因爲我已經更新了 –
不要在acf/save_post中寫入退出 – vel