Get the last 10 Images from the media Library by shortcode

[themify_is_logged_in]

[php]

</pre>
function get_library_gallery( ){

$image_ids = get_posts(
array(
‚post_type‘ => ‚attachment‘,
‚post_mime_type‘ => ‚image‘,
‚post_status‘ => ‚inherit‘,
‚fields‘ => ‚ids‘,
‚posts_per_page‘ => 10,
‚post__not_in‘ => array(get_post_thumbnail_id( 13110 )),
)
);

$image_ids = implode( ",", $image_ids );

return do_shortcode( ‚

.

‚ );

}
add_shortcode( ‚library_gallery‘, ‚get_library_gallery‘ );
<pre>

[/php]

[/themify_is_logged_in]