screen_options_show_submit

screen_options_show_submit

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('screen_options_show_submit') is found 1 times:

  • /wp-admin/includes/class-wp-screen.php line 1092
    		 * @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;