Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

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' );