set_screen_option_{$option}

set_screen_option_{$option}

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('set_screen_option_{$option}') is found 1 times:

  • /wp-admin/includes/misc.php line 792
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    *                               Default false (to skip saving the current option).
     * @param string  $option        The option name.
     * @param int     $value         The option value.
     */
    $value = apply_filters( "set_screen_option_{$option}", $screen_option, $option, $value );
     
    if ( false === $value ) {
        return;
    }
     
    break;