如何删除"register_post_meta"列表页面中的"快速编辑"选项

Hin*_*ina 3 php wordpress

register_post_type在列表页面中自动使用它是四个动作编辑/快速编辑/垃圾/查看.我想从列表页面中删除"快速编辑"选项.我怎么能这样做

Bal*_*ran 6

/*------------------------------------------------------------------------------------
    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;
}
Run Code Online (Sandbox Code Playgroud)

它对我有用,请咨询你的