https://displayposts.com/docs/parameters/#query-pa...
[display-posts id="9, 10"]
function post_by_slug( $atts ) {
$a = shortcode_atts( array(
'slug' => ''
), $atts );
$slug = explode(',', $a['slug']);
$args = array(
'post_name__in' => $slug,
'post_type' => 'page',
'post_status' => 'publish',
);
$html = '';
$my_posts = get_posts($args);
if( $my_posts ) :
foreach( $my_posts as $post ) :
echo $post->post_title;
endforeach;
endif;
return $html;
}
add_shortcode( 'post_by_slug', 'post_by_slug' );