Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Blog Sambapita

Blog Sambapita

// Add Shortcode
function custom_shortcode() {

	// Code
<div class="ut-portfolio-wrap flexslider ut-carousel portfolio-style-two" style="padding:100px 0;">
<ul>

<?php query_posts('showposts=4'); ?> 
<?php while (have_posts()) : the_post(); ?> 
			
<li class="ut-carousel-item ut-hover" style="width: 300px; float: left; display: block;">		
			<a data-rel="utPortfolio" class="ut-square" href="<?php echo esc_url( get_permalink( get_page_by_title() )); ?>">
			<figure><?php the_post_thumbnail('medium'); ?></figure>
	<div class="ut-hover-layer" style="color: rgb(18, 18, 18); background-color: rgba(18, 18, 18, 0.8); opacity: 0; background-position: initial initial; background-repeat: initial initial;">
		<div class="ut-portfolio-info">
		<div class="ut-portfolio-info-c">
		<i class="fa fa-picture-o fa-lg"></i>
		<span>BLOG</span>
		</div>
		</div>
	</div>

</a>
<a data-rel="utPortfolio" class="ut-square" href="<?php echo esc_url( get_permalink( get_page_by_title() )); ?>">
	<h2 class="portfolio-title"><?php the_title(); ?></h4>
</a>
</li>
<?php endwhile;?>
</ul>
</div>
}
add_shortcode( '', 'custom_shortcode' );