gpt4 book ai didi

php - 如何去掉 "Quick edit"列表页中的 "register_post_meta"选项

转载 作者:可可西里 更新时间:2023-11-01 00:32:51 35 4
gpt4 key购买 nike

我在列表页面中自动使用 register_post_type 它是四个操作 Edit/Quick Edit/trash/View。我想从列表页面中删除“快速编辑”选项。我该怎么做。

最佳答案

/*------------------------------------------------------------------------------------
remove quick edit for custom post type videos just to check if less mem consumption
------------------------------------------------------------------------------------*/
add_filter( 'post_row_actions', 'remove_row_actions', 10, 2 );
function remove_row_actions( $actions, $post )
{
global $current_screen;
if( $current_screen->post_type != 'videos' ) return $actions;
unset( $actions['edit'] );
unset( $actions['view'] );
unset( $actions['trash'] );
unset( $actions['inline hide-if-no-js'] );
//$actions['inline hide-if-no-js'] .= __( 'Quick Edit' );

return $actions;
}

它对我有用,请检查你的

关于php - 如何去掉 "Quick edit"列表页中的 "register_post_meta"选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20475296/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com