Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'post_row_actions', 'tab_row_actions', 10, 2 );
- function tab_row_actions( $actions, $post )
- {
- if( get_post_type() === 'post' )
- {
- $edit_tag = "<a target='_blank' href='";
- $link = admin_url( 'post.php' );
- $edit_tag .= add_query_arg(array('post' => $post->ID, 'action' => 'edit'), $link);
- $edit_tag .= "'>Edit in New Tab</a>";
- $actions['edit_new_tab'] = $edit_tag;
- }
- return $actions;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement