Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
gatsby-source-wordpress-menus
Advanced tools
gatsby source plugin to fetch menus via wordpress rest api
this is a gatsby source plugin to read wordpress menus via the REST API
and make its contents available via GraphQL.
It specifically supports WPML. If you are not using WPML then there are usually
better ways to get at this data (e.g. via GraphQL or gatsby-source-wordpress
).
Unfortunately support for additional query parameters or route modification are still not supported in gatsby.
You need the following wordpress plugin installed in your wordpress instance
https://wordpress.org/plugins/wp-rest-api-v2-menus/
yarn install gatsby-source-wordpress-menus
in your gatsby-config.js
module.exports = {
siteMetadata: {
...
},
plugins: [
...
{
resolve: "gatsby-source-wordpress-menus",
options: {
wordpressUrl: "https://your-wordpress-site.com",
languages: ["de", "en"],
enableWpml: true,
allowCache: true,
maxCacheDurationSeconds: 60 * 60 * 24
},
},
...
You can now query your menu data via
query MyQuery {
wordpressMenuLocation(slug: { eq: "location-slug" }, language: { eq: "en" }) {
slug
language
menu {
filter
name
slug
taxonomy
}
menuData {
items {
menu_order
slug
title
url
child_items {
title
url
type
}
}
}
}
allWordpressMenuLocation {
nodes {
id
slug
language
menu {
slug
taxonomy
errors {
invalid_term
}
}
}
}
}
Any contribution, feedback and PRs are very welcome. Issues is a preferred way of submitting feedback.
FAQs
gatsby source plugin to fetch menus via wordpress rest api
We found that gatsby-source-wordpress-menus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.