Most-liked-content template
-
I would like to display individual product price under most liked content page. It can be done by adding some code in the template file. But I do not have any tech background, anyone can please help me on this? Thanks!!!
Template as shown below
<?php
/**
* Most Liked Content tempplate
*/// Block direct requests
if ( !defined(‘ABSPATH’) )
die(‘-1’);
?><?php if (!empty($before_widget)): ?>
<?php echo $before_widget; ?>
<?php endif ?><?php if (!empty($title)): ?>
<?php if (!empty($before_title)): ?>
<?php echo $before_title; ?>
<?php endif ?>
<?php echo $title; ?>
<?php if (!empty($after_title)): ?>
<?php echo $after_title; ?>
<?php endif ?>
<?php endif ?><?php if (count($post_loop) > 0): ?>
<ul class=”likebtn-mlw”>
<?php foreach ($post_loop as $post): ?>
<li id=”post-<?php echo $post[‘id’] ?>” class=”likebtn-mlw-item” >
” title=”<?php echo esc_attr($post[‘title’]) ?>”>
<?php if ($show_thumbnail): ?>
<?php if (‘image/’ == substr( $post[‘post_mime_type’], 0, 6 ) ): ?>
<?php echo wp_get_attachment_image( $post[‘id’], $thumbnail_size, array(‘class’ => ‘likebtn-item-thumbnail’) );?>
<?php else: ?>
<?php echo get_the_post_thumbnail($post[‘id’], $thumbnail_size, array(‘class’ => ‘likebtn-item-thumbnail’));?>
<?php endif ?>
<?php endif ?>
<div class=”likebtn-mlw-title”>
<?php echo $post[‘title’] ?><?php if ($show_likes || $show_dislikes): ?> <span class=”likebtn-item-likes”><nobr>(
<?php endif ?>
<?php echo $show_likes ? $post[‘likes’] : ”; ?>
<?php if ($show_likes && $show_dislikes): ?>
/
<?php endif ?>
<?php echo $show_dislikes ? $post[‘dislikes’] : ”; ?>
<?php if ($show_likes || $show_dislikes): ?>
)</nobr></span>
<?php endif ?>
</div>
<?php if ($show_date && $post[‘date’]): ?>
<small class=”likebtn-mlw-date”><i><?php echo date_i18n(get_option(‘date_format’), $post[‘date’]) ?></i></small>
<?php endif ?>
<?php if ($show_author && $post[‘author_name’]): ?>
<?php if ($show_date && $post[‘date’]): ?>
<small>/</small>
<?php endif ?>
<small class=”likebtn-mlw-author”><i><?php echo $post[‘author_name’] ?></i></small>
<?php endif ?>
<?php if ($show_excerpt): ?>
<div class=”likebtn-mlw-excerpt”><?php echo $post[‘excerpt’] ?></div>
<?php endif ?>
<?php if ($post[‘button_html’]): ?>
<div class=”likebtn-mlw-button”><?php echo $post[‘button_html’]; ?></div>
<?php endif ?>
<?php if ($show_thumbnail || $show_excerpt): ?>
<br/>
<?php endif ?><?php endforeach; ?>
<?php else: // No items ?>
<div class=”likebtn-mlw-no-items”>
<p>
<?php if ($empty_text): ?>
<?php echo $empty_text; ?>
<?php else: ?>
<?php _e(‘No items liked yet.’, LIKEBTN_I18N_DOMAIN); ?>
<?php endif ?>
</p>
</div>
<?php
endif;
?><?php if (!empty($after_widget)): ?>
<?php echo $after_widget; ?>
<?php endif ?>
The topic ‘Most-liked-content template’ is closed to new replies.