Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Galeria Home Lizzy

galeri apara le home de kinder miss lizzy

// Add Shortcode
function jean_gallery_home( $atts ) {

	// Attributes
	$atts = shortcode_atts(
		array(
			'page' => '1',
			'per_page' => '10',
			'posttype' => 'posts',
		),
		$atts,
		'kinder_lizzy_galeria'
	);

}
add_shortcode( 'kinder_lizzy_galeria', 'jean_gallery_home' );