Great, also we can put them on the same line and reduce spaces right? Just one more question how to make date clickable with title together ?
Thanks in advance.
please can you give me a little tuto how to do it? i saw this on a post but now what to add to functions.php
<?php
/** single product featured image (second featured image)
*
*/
if (function_exists('dfi_get_featured_images') ) {
$featuredImages = dfi_get_featured_images( $returnedArray[1] );
if( !is_null($featuredImages) ) {
echo '<div class="featured-image featured-image-desktop hidden-xs">'; // featured image wrapper
foreach($featuredImages as $images) {
echo '<img src="' . $images['full'] . '" />';
}
echo '</div>';
}
}
?>