Viewing 1 replies (of 1 total)
  • Plugin Author Mathieu Viet

    (@imath)

    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.