Softlink 2103102

Noud van Kruysbergen
Links bij het artikel uit c't 3/2021 op pagina 102

Wordpress geeft gegevens prijs

Code voor de beveiliging: functions_addon.php

add_filter( 'rest_authentication_errors', function( $result ) {

  if ( ! empty( $result ) ) {

    return $result;

  }

  if ( ! is_user_logged_in() ) {

    return new WP_Error( '401', 'not allowed.', array('status' => 401) );

  }

  return $result;

});