Open post type in new tab to edit it in WordPress
-
Hello
Is it possible to add an attr target=”_blank” to post list in wordpress dashboard. Or a solution to open on click a post type (form the list) to a new tab to edit it ?
at the moment I have this :
add_action(‘admin_head-edit.php’, ‘wpse152971_edit_post_change_title_in_list’);
function wpse152971_edit_post_change_title_in_list() {
add_filter(‘the_title’, ‘wpse152971_construct_new_title’, 10, 2);
}function wpse152971_construct_new_title($title, $id) {
//print_r(title);
return $title;
}
but I just hit the title and not the entire post link tag.Thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Open post type in new tab to edit it in WordPress’ is closed to new replies.