Hi @staseo,
This would be the shortcode version for those settings:
[wpp range='last7days' cat=-15 header='Popular Posts' header_start='<h3>' header_end='</h3>' wpp_start='<div>' post_html='<div class="post"><div class="list">{thumb}<br> {title} <br>{summary}<span class="wpp-meta post-stats">{stats}</span></div></div>' wpp_end='</div>']
Change cat=-15 to the actual category ID you want to exclude.
As a bonus, here’s the PHP version:
<?php
if ( function_exists('wpp_get_mostpopular') ) {
$args = array(
'range' => 'last7days',
'cat' => -15,
'header' => 'Popular Posts',
'header_start' = > '<h3>',
'header_end' => '</h3>',
'wpp_start' => '<div>',
'post_html' => '<div class="post"><div class="list">{thumb}<br> {title} <br>{summary}<span class="wpp-meta post-stats">{stats}</span></div></div>',
'wpp_end' = > '</div>'
);
wpp_get_mostpopular($args);
}
?>
Thread Starter
STASEO
(@staseo)
Hi Hector, thanks for the code.
It seems that the {thumb} and the {summary} are not showed. Only the {title}. Also, I how to disable the number of views?
It seems that the {thumb} and the {summary} are not showed
Ah, you need to define the width and height of the thumbnail for it to show, otherwise it won’t. Same applies to the {summary} tag, you need to set the excerpt length. Since you didn’t share these settings I didn’t include them on my comment above 😛
See:
[wpp thumbnail_width=100 thumbnail_height=100 excerpt_length=75 ...]
And the PHP version:
<?php
if ( function_exists('wpp_get_mostpopular') ) {
$args = array(
'thumbnail_width' => 100,
'thumbnail_height' => 100,
'excerpt_length' => 75,
// rest of the parameters
);
wpp_get_mostpopular($args);
}
?>
Also, I how to disable the number of views?
If you’re using the shortcode use the stats_views parameter, like so for example:
[wpp stats_views=0 ...]
The PHP version would be:
<?php
if ( function_exists('wpp_get_mostpopular') ) {
$args = array(
'stats_views' => 0,
// rest of the parameters
);
wpp_get_mostpopular($args);
}
?>