Title: Headless
Author: EdwardBock
Published: <strong>ಮೇ 25, 2022</strong>
Last modified: ಆಗಷ್ಟ್ 4, 2026

---

ಪ್ಲಗಿನ್‌ಗಳನ್ನು ಹುಡುಕಿ

![](https://ps.w.org/headless/assets/icon-256x256.png?rev=2745133)

# Headless

 ‍[EdwardBock](https://profiles.wordpress.org/edwardbock/) ಮೂಲಕ

[ಡೌನ್ಲೋಡ್](https://downloads.wordpress.org/plugin/headless.3.0.4.zip)

 * [ವಿವರಗಳು](https://kn.wordpress.org/plugins/headless/#description)
 * [‍ವಿಮರ್ಶೆಗಳು‍](https://kn.wordpress.org/plugins/headless/#reviews)
 *  [ಸ್ಥಾಪನೆ](https://kn.wordpress.org/plugins/headless/#installation)
 * [ಅಭಿವೃದ್ಧಿ](https://kn.wordpress.org/plugins/headless/#developers)

 [ಬೆಂಬಲ](https://wordpress.org/support/plugin/headless/)

## ವಿವರಣೆ

Adds features to use WordPress as a headless CMS: extra fields and prepared block

content on the REST API, custom routes for menus and site settings, a preview that
points at your frontend instead of the WordPress theme, and cache revalidation for
frontends that support it.

#### Configuration

The plugin is configured with constants in `wp-config.php`:

 * `HEADLESS_HEAD_BASE_URL` — base URL of your frontend. Preview and revalidation
   requests go here.
 * `HEADLESS_SECRET_TOKEN` — shared token sent to the frontend’s `/api/preview` 
   and `/api/revalidate` endpoints.
 * `HEADLESS_API_KEY_HEADER_KEY` and `HEADLESS_API_KEY_HEADER_VALUE` — require this
   HTTP header on requests that use the plugin’s REST additions.

#### Who can read the responses

The plugin’s REST additions activate on requests carrying `?headless=true`. **That

query parameter is a routing flag, not authentication
 — anyone can set it. Unless

you configure `HEADLESS_API_KEY_HEADER_KEY` and `HEADLESS_API_KEY_HEADER_VALUE`,
the /headless/v1/menus and `/headless/v1/settings` routes and the added post fields
are readable by anyone who can reach your REST API. Configure the API key if that
is not what you want.

    ```
    HEADLESS_SECRET_TOKEN is a single shared secret, and the admin pages hand it to the
    ```

browser so the editor can open a preview. Every user who can edit posts — Contributor

upwards — can therefore read it and use it against your frontend’s preview and revalidation
endpoints directly. Treat it as a secret shared with your whole editorial team, 
and give the frontend its own rate limiting.

### Arbitrary section

 * BREAKING CHANGE 1.7.0: core/block for block references has changed

## ಸ್ಥಾಪನೆ

 1. Upload `headless.zip` to the `/wp-content/plugins/` directory
 2. Extract the Plugin to a `headless` Folder
 3. Activate the plugin through the ‘Plugins’ menu in WordPress

## FAQ

### Application passwords stopped being available after updating

Earlier versions forced application passwords on unconditionally. WordPress itself

only offers them over HTTPS or in a local environment, because the password travels
in an `Authorization` header on every request. The plugin no longer overrides that.
If you knowingly want them on a plain-HTTP site, opt back in:

    ```
    add_filter( 'headless_application_passwords_available', '__return_true' );
    ```

The better fix is a TLS certificate.

### Comment responses no longer contain author_user.nickname

nickname defaults to the account’s login name, and the comments endpoint is public,

so the field was handing out usernames. It is now only included for requests by 
a user who may list users. `display_name` is unchanged and is what you want for 
rendering.

### Queries on meta keys starting with an underscore return everything

WordPress treats a leading underscore as protected meta. `hl_meta_keys`,
 hl_meta_exists
and `hl_meta_not_exists` now ignore protected keys for requests that may not edit
posts — otherwise a `like` comparison lets anyone read a protected value one character
at a time by watching which posts come back. Authenticated requests that may edit
posts are unaffected. To decide per key yourself:

    ```
    add_filter( 'headless_meta_key_is_queryable', function( $queryable, $key ) {
        return $key === '_my_public_key' ? true : $queryable;
    }, 10, 2 );
    ```

### hl_post_type no longer accepts every post type

Only post types that are public and exposed in the REST API are accepted, and `any`

resolves to that same set. Post types WordPress would not show in the REST API are
no longer passed into the query.

## ‍ವಿಮರ್ಶೆಗಳು‍

ಈ ಪ್ಲಗಿನ್‌ಗೆ ಯಾವುದೇ ವಿಮರ್ಶೆಗಳಿಲ್ಲ.

## ಕೊಡುಗೆದಾರರು & ಡೆವಲಪರ್‌ಗಳು

“Headless” ಓಪನ್ ಸೋರ್ಸ್ ಸಾಫ್ಟ್‌ವೇರ್ ಆಗಿದೆ. ಕೆಳಗಿನ ಜನರು ಈ ಪ್ಲಗಿನ್‌ಗೆ ಕೊಡುಗೆ ನೀಡಿದ್ದಾರೆ.

ಕೊಡುಗೆದಾರರು

 *   [ EdwardBock ](https://profiles.wordpress.org/edwardbock/)
 *   [ Palasthotel GmbH ](https://profiles.wordpress.org/palasthotel/)
 *   [ Jana Eggebrecht ](https://profiles.wordpress.org/janaeggebrecht/)

“Headless” has been translated into 1 locale. ಅವರ ಕೊಡುಗೆಗಳಿಗಾಗಿ [ಅನುವಾದಕರು](https://translate.wordpress.org/projects/wp-plugins/headless/contributors)
ಅವರಿಗೆ ಧನ್ಯವಾದಗಳು.

[“Headless” ಅನ್ನು ನಿಮ್ಮ ಭಾಷೆಗೆ ಅನುವಾದಿಸಿ.](https://translate.wordpress.org/projects/wp-plugins/headless)

### ಅಭಿವೃದ್ಧಿಯಲ್ಲಿ ಆಸಕ್ತಿ ಇದೆಯೇ?

[ಕೋಡ್ ಬ್ರೌಸ್ ಮಾಡಿ](https://plugins.trac.wordpress.org/browser/headless/), [SVN ರೆಪೊಸಿಟರಿ](https://plugins.svn.wordpress.org/headless/)
ಪರಿಶೀಲಿಸಿ, ಅಥವಾ [ಅಭಿವೃದ್ಧಿ ಲಾಗ್](https://plugins.trac.wordpress.org/log/headless/)
ಗೆ [RSS](https://plugins.trac.wordpress.org/log/headless/?limit=100&mode=stop_on_copy&format=rss)
ಚಂದಾದಾರರಾಗಿ.

## Changelog

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu route (b735870)
 * require a nonce for the revalidation endpoints (4e6bd21)
 * stop protected post meta from being queried anonymously (5f9f8ee)
 * stop publishing comment authors’ login names (1c73947)

#### 3.0.4

 * leave the application password SSL check to WordPress (8f5701b)
 * repair the single menu …

## ಮೆಟಾ

 *  Version **3.0.4**
 *  ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಿದ್ದು **1 ತಿಂಗಳು ರ ಮುನ್ನ**
 *  ಸಕ್ರಿಯ ಸ್ಥಾಪನೆಗಳು **10+**
 *  ವರ್ಡ್ಪ್ರೆಸ್ ಆವೃತ್ತಿ ** 5.0 ಅಥವಾ ಹೆಚ್ಚಿನದು **
 *  **7.0.4** ವರೆಗೆ ಪರೀಕ್ಷಿಸಲಾಗಿದೆ
 *  PHP ಆವೃತ್ತಿ ** 8.0 ಅಥವಾ ಹೆಚ್ಚಿನದು **
 *  ಭಾಷೆಗಳು
 * [English (US)](https://wordpress.org/plugins/headless/) ಮತ್ತು [Russian](https://ru.wordpress.org/plugins/headless/).
 *  [ನಿಮ್ಮ ಭಾಷೆಗೆ ಅನುವಾದಿಸಿ](https://translate.wordpress.org/projects/wp-plugins/headless)
 * ಟ್ಯಾಗ್‌ಗಳು
 * [block](https://kn.wordpress.org/plugins/tags/block/)[developer](https://kn.wordpress.org/plugins/tags/developer/)
   [gutenberg](https://kn.wordpress.org/plugins/tags/gutenberg/)[utils](https://kn.wordpress.org/plugins/tags/utils/)
 *  [ಸುಧಾರಿತ ನೋಟ](https://kn.wordpress.org/plugins/headless/advanced/)

## ರೇಟಿಂಗ್‌ಗಳು

No reviews have been submitted yet.

[Your review](https://wordpress.org/support/plugin/headless/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/headless/reviews/)

## ಕೊಡುಗೆದಾರರು

 *   [ EdwardBock ](https://profiles.wordpress.org/edwardbock/)
 *   [ Palasthotel GmbH ](https://profiles.wordpress.org/palasthotel/)
 *   [ Jana Eggebrecht ](https://profiles.wordpress.org/janaeggebrecht/)

## ಬೆಂಬಲ

ಹೇಳಲು ಏನಾದರೂ ಸಿಕ್ಕಿದೆಯೇ? ಸಹಾಯ ಬೇಕೇ?

 [ಬೆಂಬಲ ವೇದಿಕೆಯನ್ನು ವೀಕ್ಷಿಸಿ](https://wordpress.org/support/plugin/headless/)

## ದೇಣಿಗೆ ನೀಡಿ

ಈ ಪ್ಲಗಿನ್‌ನ ಪ್ರಗತಿಯನ್ನು ನೀವು ಬೆಂಬಲಿಸಲು ಬಯಸುವಿರಾ?

 [ ಈ ಪ್ಲಗಿನ್‌ಗೆ ದೇಣಿಗೆ ನೀಡಿ ](http://palasthotel.de/)