Unable to display date and featured image
-
Any idea on how to display the featured image of a post? I am using the wpp_get_mostpopular() in single.php. I am not able to display date (day and month) also. Here is my code below
<?php if (function_exists('wpp_get_mostpopular')) { wpp_get_mostpopular(array( 'limit' => 4, 'range' => 'last7days', 'order_by' => 'views', 'wpp_start' => '', 'wpp_end' =>'', 'thumbnail_width' => 50, 'thumbnail_height' => 50, 'post_html' => ' <div class="card card-body bg-light shadow-sm border-0 mb-5"> <div class="row"> <div class="col-4 col-md-5 col-lg-5 pe-lg-0 pos-rel"> {thumb_img} <div class="date-box tx-14 tx-gray text-center content-pos"> <span class="fw-bold">{date}</span> </div> </div> <div class="col-8 col-md-7"> <p class="tx-24 fw-bold mb-1 col-lg-9 blogpost-tx">{text_title}</p> <div class="pt-4 pt-md-5"> <a href="{url}" class="fw-bold tx-24"> More Info <img src="'.get_template_directory_uri().'/assets/img/icons/arrow-right.svg" alt="" srcset="" class="ms-5"> </a> </div> </div> </div> </div> ' )); } ?>
The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Unable to display date and featured image’ is closed to new replies.