The links in Display Posts all open in the current window. We can use the output filter to modify this, making all links open in a new window:
This code snippet goes in a core functionality plugin or Code Snippets.
/**
* Display Posts, open links in a new window
* @see https://displayposts.com/2019/02/20/open-links-in-a-new-window/
*
*/
function be_dps_links_new_window( $output ) {
$output = str_replace( 'href="', 'target="_blank" href="', $output );
return $output;
}
add_filter( 'display_posts_shortcode_output', 'be_dps_links_new_window' );
Filters used:
display_posts_shortcode_output