【发布时间】:2014-05-23 06:00:32
【问题描述】:
我创建了新的自定义帖子类型 - 在 wordpress 中进行交易,并在发布新交易帖子后重定向到 edit.php(帖子列表)。所以我想把它重定向到交易列表页面(http://mydemo.com/demo/edit.php?post_type=deals)所以请帮助我。
我试过这段代码,但它会将所有帖子类型重定向到指定页面。
add_filter( 'redirect_post_location', 'wpse_124132_redirect_post_location' );
/**
* Redirect to the edit.php on post save or publish.
*/
function wpse_124132_redirect_post_location( $location ) {
if ( isset( $_POST['save'] ) || isset( $_POST['publish'] ) )
return admin_url( "edit.php?post_type=deals" );
return $location;
}
【问题讨论】: