screen_options_show_submit

screen_options_show_submit

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('screen_options_show_submit') is found 1 times:

  • /wp-admin/includes/class-wp-screen.php line 1092
    1088
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    * @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;