Можно конечно.
Пример кода:
 <?php osc_reset_latest_items(); ?>
    		
            <div class="f_recent">
    			<div class="f_head"><?php _e('Recent items', 'theme') ?></div>
    			<div class="f_recent-list">
                    <?php $i = 1; while(osc_has_latest_items()): ?>
        				<div class="f_recent-item">
                            <div class="f_recent-item__thumb">
                                <?php if(osc_images_enabled_at_items() && osc_count_item_resources()):?>
            					   <img src="<?php echo osc_resource_thumbnail_url(); ?>" alt="recent">
                                <?php else: ?>
                                    <img src="<?php echo osc_current_web_theme_url('images/no_photo.gif'); ?>" alt="recent">
                                <?php endif; ?>
        					</div>
                            
                           <div class="f_recent-item__info">
        		<a href="<?php echo osc_item_url(); ?>" class="f_recent-item__title">
                         <?php if(strlen(osc_item_title()) > 25) echo mb_substr(osc_item_title(), 0, 23,'UTF-8') . '...'; else echo osc_item_title(); ?>
                                </a>
                                
                                <?php if(osc_price_enabled_at_items() && osc_item_category_price_enabled(osc_item_category_id())): ?>
        			<div class="f_recent-item__price"><?php _e('Price', 'theme') ?>: <span><?php echo osc_item_formated_price(); ?></span></div>
                                <?php endif; ?>
        					</div>
        				</div>
                        
                        <?php $i++; ?>
                        <?php if($i > 3) break; ?>
                    <?php endwhile; ?>
    			</div>
    		</div>А со стилями уже самостоятельно разбирайтесь.