Self hosted Wordpress
WordPress API can help you create a variety of different projects with greater
efficiency and functionality. Whether it’s developing and creating a custom
WordPress site, creating an API for a product, or developing a plugin for a
program, the WordPress API offers more possibilities than ever to customize and
enhance your online experience. Here are a few examples of things you can build
using the WordPress API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wordpress_org: {
type: "app",
app: "wordpress_org",
}
},
async run({steps, $}) {
const data = {
"title": `New Title`,
}
return await axios($, {
method: "post",
url: `https://${this.wordpress_org.$auth.url}/wp-json/wp/v2/posts/POST_ID`,
auth: {
username: `${this.wordpress_org.$auth.username}`,
password: `${this.wordpress_org.$auth.application_password}`,
},
data,
})
},
})
package main
import (
"fmt"
pd "github.com/PipedreamHQ/pipedream-go"
)
func main() {
// Access previous step data using pd.Steps
fmt.Println(pd.Steps)
// Export data using pd.Export
data := make(map[string]interface{})
data["name"] = "Luke"
pd.Export("data", data)
}