Slide 100
Slide 100 text
public
function
widget(
$args,
$instance
)
{
$title
=
apply_filters(
'widget_title',
$instance['title']
);
$number_of_posts
=
(int)
$instance['number_of_posts'];
!
$hot_topics_query
=
new
WP_Query(
array(
'orderby'
=>
'comment_count',
'ignore_sticky_posts'
=>
true,
'posts_per_page'
=>
$number_of_posts,
)
);