screen_options_show_submit, false, $this

screen_options_show_submit, false, $this

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: 7.0.3

apply_filters('screen_options_show_submit, false, $this') is found 1 times:

  • /wp-admin/includes/class-wp-screen.php line 1094
    		 * @param bool      $show_button Whether to show Screen Options submit button.
    		 *                               Default false.
    		 * @param WP_Screen $screen      Current WP_Screen instance.
    		 */
    		$show_button = apply_filters( 'screen_options_show_submit', false, $this );
    
    		if ( $show_button ) {
    			submit_button( __( 'Apply' ), 'primary', 'screen-options-apply', true );
    		}
    
    		echo $form_end . $wrapper_end;