Title: Remove title, thumbnails only
Last modified: December 31, 2017

---

# Remove title, thumbnails only

 *  Resolved [zeshark](https://wordpress.org/support/users/zeshark/)
 * (@zeshark)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/remove-title-thumbnails-only/)
 * Hi,
    I just upgraded from 2.3.2 to 4.0.13 (yes i know …) and the wpp_get_mostpopular
   call returned post views count and post title by default. Getting rid of stats
   was easy but i am stuck with the post title link. I tried a title_length of zero,
   but without success.
 * wpp_get_mostpopular(“range=weekly&order_by=views&limit=8&post_type=post&thumbnail_width
   =200&thumbnail_height=100&stats_comments=0&stats_views=0&title_length=0&do_pattern
   =1&pattern_form='{image}'”);
 * Any suggestion ?
    Thanks !

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Plugin Author [Hector Cabrera](https://wordpress.org/support/users/hcabrera/)
 * (@hcabrera)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/remove-title-thumbnails-only/#post-9824041)
 * Hey there,
 * > I just upgraded from 2.3.2 to 4.0.13 (yes i know …)
 * Holy crap! How were you able to stay on that version for so long!?
 * > Getting rid of stats was easy but i am stuck with the post title link.
 * Your code is a little bit outdated. Try this instead:
 *     ```
       <?php
   
       if ( function_exists('wpp_get_mostpopular') ) {
   
           $args = array(
               'range' => 'weekly',
               'order_by' => 'views',
               'limit' => 8,
               'post_type' => 'post',
               'thumbnail_width' => 200,
               'thumbnail_height' => 100,
               'post_html' => '{thumb}'
           );
   
           wpp_get_mostpopular( $args );
   
       }
   
       ?>
       ```
   
 *  Thread Starter [zeshark](https://wordpress.org/support/users/zeshark/)
 * (@zeshark)
 * [8 years, 4 months ago](https://wordpress.org/support/topic/remove-title-thumbnails-only/#post-9824630)
 * Super, that did the trick, thank you for the prompt reply.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove title, thumbnails only’ is closed to new replies.

 * ![](https://ps.w.org/wordpress-popular-posts/assets/icon-256x256.png?rev=1232659)
 * [WP Popular Posts](https://wordpress.org/plugins/wordpress-popular-posts/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wordpress-popular-posts/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wordpress-popular-posts/)
 * [Active Topics](https://wordpress.org/support/plugin/wordpress-popular-posts/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wordpress-popular-posts/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wordpress-popular-posts/reviews/)

## Tags

 * [remove](https://wordpress.org/support/topic-tag/remove/)
 * [title](https://wordpress.org/support/topic-tag/title/)
 * [wpp_get_mostpopular](https://wordpress.org/support/topic-tag/wpp_get_mostpopular/)

 * 2 replies
 * 2 participants
 * Last reply from: [zeshark](https://wordpress.org/support/users/zeshark/)
 * Last activity: [8 years, 4 months ago](https://wordpress.org/support/topic/remove-title-thumbnails-only/#post-9824630)
 * Status: resolved