Title: Remove Add New Button
Last modified: August 30, 2016

---

# Remove Add New Button

 *  Resolved [kalipekona](https://wordpress.org/support/users/kalipekona/)
 * (@kalipekona)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/remove-add-new-button/)
 * How would I go about removing the ADD NEW button? I plan on using a menu item
   instead. Thanks in advance for you help!
 * Clif
 * [https://wordpress.org/plugins/wp-idea-stream/](https://wordpress.org/plugins/wp-idea-stream/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Mathieu Viet](https://wordpress.org/support/users/imath/)
 * (@imath)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/remove-add-new-button/#post-6815283)
 * Hi Clif,
 * You can do this:
 *     ```
       function kalipekona_remove_link_from_archive_title( $title = '', $context = '' ) {
       	if ( 'archive' === $context ) {
       		$title = esc_html( wp_idea_stream_archive_title() );
       	}
   
       	return $title;
       }
       add_filter( 'wp_idea_stream_reset_post_title', 'kalipekona_remove_link_from_archive_title', 10, 2 );
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Remove Add New Button’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-idea-stream_f1f1f1.svg)
 * [WP Idea Stream](https://wordpress.org/plugins/wp-idea-stream/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-idea-stream/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-idea-stream/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-idea-stream/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-idea-stream/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-idea-stream/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Mathieu Viet](https://wordpress.org/support/users/imath/)
 * Last activity: [10 years, 5 months ago](https://wordpress.org/support/topic/remove-add-new-button/#post-6815283)
 * Status: resolved