Based on this answer, yours was easy:
add_filter('post_row_actions', 'wpse_49800_qe_download_link', 10, 2);
add_filter('page_row_actions', 'wpse_49800_qe_download_link', 10, 2);
// for Custom Post Types
// add_filter('cpt_name_row_actions', 'wpse_49800_qe_download_link', 10, 2);
function wpse_49800_qe_download_link($actions, $post) {
unset($actions['inline hide-if-no-js'],$actions['trash']);
return $actions;
}
Notice that you don’t mention the 'Trash'
, so it’s being removed as well.
Plugin of interest
Adminimize is able to hide lots of stuff from the Admin panel based on user roles.
Related Posts:
- allow editor/author to publish others posts but not publish their own
- Admin Post List Only Show One Category
- Authors can edit all posts, except when an owner is specified?
- Update post counts (published, draft, unattached) in admin interface
- How to prevent a post from being deleted?
- Allow user to “edit_others_posts” to save only, not publish
- How to add a “publish” link to the quick actions
- How to limit user to publish post per day and per role?
- Add role that restricts user to post in specific category
- Allow role to delete posts but block him the wp-admin
- Undefined variable post_id in custom quick edit coloumn
- Multiple authors for single post without plugin
- If specific user role then sticky post
- Downgrade user from role that allows post creation
- Remove the Edit button in posts for permalinks on certain user roles? WP 3.3
- Posts with multiple authors with different roles
- How to get post bulk edit action trigger and get edited post ids?
- Update a users role based on number of posts published
- Change user role when post approve
- Stop users posting into category while still seeing contents of the category
- How to allow users to post only in certain category and hide elements from edit page?
- Post visibility based on user role
- Permission issue with custom post type – not added to menu – by plugin
- “edit_published_posts” and “edit_other_post” issue
- User levels and post visibility
- (solved) getting post author’s user role
- Delete post after x minutes if user role is
- Show posts by author of membership level (Paid Membership Pro)
- Hide comments and posts posted by other user
- Prevent posts with certain post_meta to be edited
- Edit custom fields in posts list
- Show 10 latest posts only from users with contributors role
- Limit Post Creation Count by Author or Role
- allow user to create a draft post but not publish wordpress
- Administrator Posts
- Changing a users posts to drafts upon role change
- Allow author to duplicate but not edit post
- Disable `create_post` for built-in post type
- Add new post only in assigned category
- Remove All in One Seo from Posts for Contributors
- Adding custom fields to the Quick Edit screen – puzzled about the column concept
- each user having category with their name and can add sub categories post in that category
- Multi Quick Edit – Possible Or Impossible?
- WordPress strips some attributes for author posts
- Display posts with id equal to relationship value
- Post/Page Preview Template
- Post slugs and images cannot have same name?
- Convert custom fields to post categories
- Hide password protected posts in admin
- Most viewed post for the last 2 days using WP_Query
- This AJAX Code Doesn’t Work – Looking for elegant solution
- Archived Posts in Wrong Category
- Get post embedded image caption
- Odd/even class on article tag
- Filter/Remove HTML Elements on all posts and pages
- How to get posts by multiple post slugs? [duplicate]
- Changing next and previous post link text
- Inserting custom data to the_post() during loop
- How To Hide A Post
- Visting slug for ‘post’ post type shows 404 not archive?
- Remove Custom Post Type Slug and add Custom Taxonomy to Permalink Structure?
- Automatically create a new page daily with last three posts
- Add filter to the end of the post
- How do I change the location of post-specific information?
- Adding a user’s ID behind the tag ref link address
- Benefits to using semantic HTML in post content? [closed]
- custom word in custom permalink structure
- Using wp_tag_cloud with only posts published in specific year
- Post: how to set created date after post has been published [closed]
- Display Featured Posts Grid on Static Page (Gazette)
- Preventing role reading others posts
- How to get the next and previous image title from attachment or gallery?
- Creating a redirect option for current page url
- WordPress posts have a different URL to the index
- Blog posts pagination not working
- unable to write to the database while uploading images
- Restricting displayed posts to posts from only select authors
- How can I create a Survey Form in WordPress that users can fill in and then submit the entire survey contents as a post?
- How to Make my Homepage Display a Single Specific Post?
- Anchor links turn to p nbsp p
- Counting Posts by Category
- 2 Domains, Same Content, Different Titles?
- Show author bio box
- WordPress each user has each content for a page,how to do that?
- Fixing the WP Post Object for Custom Route
- Changing the Category for all posts of an Author
- How to remove related post from home page
- Is it possible to have dynamic post id # in add_menu_page()?
- Send/Publish a Post front end
- Hiding menu on mobile only when viewing posts?
- Insert new post for each user infinite loop error
- Last three posts not being put in order by date. How to fix this?
- WordPress sub-posts and permalinks
- limit posts per page
- Show List of Posts With Comments Open
- When and how will php code in a user made WordPress page be executed?
- Onclick open posts displayed in slider in a popup [closed]
- Listing category and its posts one by one
- How to make the Post Author name fixed as “Editorial Staff” even if there are multiple authors?
- Trying to create parent for post. I need some help. Thanks