Summary, Date and Categories not showing up
-
Hello,
For some reason that I don’t know, the tags {summary}, {author}, {date} and categories are not showing up, but other tags like url, thumb_url or title are good.
My code:
<?php if ( function_exists('wpp_get_mostpopular') ) { $args = array( 'post_html' => ' <article class="post item"> <a href="{url}"> <figure class="thumb" style="background-image: url({thumb_url})"> </figure> </a> <header class="header-posts"> <div class="data-autor"> {date} - Por {author} </div> <div class="categoria">{category}</div> <a href="{url}"><h1 class="h1-post">{text_title}</h1></a> </header> <div class="excerpt">{summary}</div> </article>', 'range' => 'last30days', 'limit' => 12, 'order_by' => 'views', 'post_type' => 'post', 'thumbnail_width' => 500, 'thumbnail_height' => 400, 'wpp_start' => '<div class="wrap-posts slide-pesquisados" id="slide-pesquisados">', ); wpp_get_mostpopular( $args ); } ?>
Can you help me solve this?
Thanks!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.