searchwp\background_process\http_basic_auth_credentials
Desde: 4.1.0
Tabla de contenidos
Enseñar al Indexador credenciales de autenticación básica HTTP.
Nota: estas credenciales son para la autenticación básica HTTP, no para tus credenciales de inicio de sesión de WordPress.
Parámetros
| Tipo | Parámetro | Predeterminado | Desde | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Matriz |
$credentials
|
4.1.0 |
||||||||||
Ejemplos
All hooks should be added to your custom SearchWP Customizations Plugin.
Proporcionar credenciales de autenticación básica HTTP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // Provide HTTP Basic Authentication credentials to SearchWP (and WP Cron). | |
| class MySearchWPBasicAuthCreds { | |
| private $username = 'username'; // HTTP Basic Auth username. | |
| private $password = 'password'; // HTTP Basic Auth password. | |
| function __construct() { | |
| // Provide HTTP Basic Authentication credentials to SearchWP. | |
| add_filter( | |
| 'searchwp\background_process\http_basic_auth_credentials', | |
| function( $credentials ) { | |
| return [ | |
| 'username' => $this->username, | |
| 'password' => $this->password, | |
| ]; | |
| } | |
| ); | |
| // Also provide HTTP Basic Authentication credentials to WP Cron. | |
| // This can be removed if handled elsewhere, otherwise *REQUIRED* | |
| add_filter( 'cron_request', function( $cron_request ) { | |
| if ( ! isset( $cron_request['args']['headers'] ) ) { | |
| $cron_request['args']['headers'] = []; | |
| } | |
| if ( isset( $cron_request['args']['headers']['Authorization'] ) ) { | |
| return $cron_request; | |
| } | |
| $cron_request['args']['headers']['Authorization'] = sprintf( | |
| 'Basic %s', | |
| base64_encode( $this->username . ':' . $this->password ) | |
| ); | |
| return $cron_request; | |
| }, 999 ); | |
| } | |
| } | |
| new MySearchWPBasicAuthCreds(); |

