Skip to content

Instantly share code, notes, and snippets.

@akther80
Created September 4, 2023 08:20
Show Gist options
  • Save akther80/88df36f6e7186648913d132881ddb6a9 to your computer and use it in GitHub Desktop.
Save akther80/88df36f6e7186648913d132881ddb6a9 to your computer and use it in GitHub Desktop.
MyTravel - Remove format links in WP Admin
add_filter('views_edit-product', 'mytravel_remove_product_format_links' , 20);
function mytravel_remove_product_format_links( $views ) {
if( isset( $views['product_format_links'] ) ) {
unset( $views['product_format_links'] );
}
return $views;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment