Cat Gallery
Create a simple plugin which will fetch the cat images and render them in the frontend.
// Add Shortcode
function custom_shortcode_search_cats( $atts ) {
// Attributes
$atts = shortcode_atts(
array(
'cats_limit' => '10',
),
$atts
);
}
add_shortcode( 'search-cats', 'custom_shortcode_search_cats' );