Title: Hide post excerpt?
Last modified: August 30, 2016

---

# Hide post excerpt?

 *  [peyote](https://wordpress.org/support/users/peyote/)
 * (@peyote)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/hide-post-excerpt/)
 * Hi there 🙂
 * I am using the below shortcode to display posts from a category. Is there any
   way to hide the post excerpt and comment count from the shortcode?
 * [su_posts template=”templates/default-loop.php” id=”” posts_per_page=”1″ post_type
   =”post” taxonomy=”category” tax_term=”39″ tax_operator=”IN”]
 * Many thanks!
 * [https://wordpress.org/plugins/shortcodes-ultimate/](https://wordpress.org/plugins/shortcodes-ultimate/)

Viewing 1 replies (of 1 total)

 *  [Tom](https://wordpress.org/support/users/atomiktd/)
 * (@atomiktd)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/hide-post-excerpt/#post-6344684)
 * The best way is to hide them by adding custom code to your style.css
 *     ```
       .su-post-meta {
           display: none;
       }
       ```
   
 *     ```
       .su-post-excerpt {
           display: none;
       }
       ```
   
 *     ```
       a.su-post-comments-link {
           display: none;
       }
       ```
   
 * Unfortunately it looks like there is no way to assign custom class to this shortcode
   so adding above code affects all your site.

Viewing 1 replies (of 1 total)

The topic ‘Hide post excerpt?’ is closed to new replies.

 * ![](https://ps.w.org/shortcodes-ultimate/assets/icon-256x256.gif?rev=2547563)
 * [Shortcodes Ultimate - Content Elements](https://wordpress.org/plugins/shortcodes-ultimate/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/shortcodes-ultimate/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/shortcodes-ultimate/)
 * [Active Topics](https://wordpress.org/support/plugin/shortcodes-ultimate/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/shortcodes-ultimate/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/shortcodes-ultimate/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Tom](https://wordpress.org/support/users/atomiktd/)
 * Last activity: [10 years, 10 months ago](https://wordpress.org/support/topic/hide-post-excerpt/#post-6344684)
 * Status: not resolved