Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devbean/obsidian-wordpress
An obsidian plugin for publishing docs to WordPress.
https://github.com/devbean/obsidian-wordpress
obsidian-plugin wordpress
Last synced: about 14 hours ago
JSON representation
An obsidian plugin for publishing docs to WordPress.
- Host: GitHub
- URL: https://github.com/devbean/obsidian-wordpress
- Owner: devbean
- License: apache-2.0
- Created: 2021-11-26T07:59:44.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-06T07:49:37.000Z (6 months ago)
- Last Synced: 2024-08-01T21:56:23.753Z (3 months ago)
- Topics: obsidian-plugin, wordpress
- Language: JavaScript
- Homepage: https://devbean.github.io/obsidian-wordpress
- Size: 37.3 MB
- Stars: 151
- Watchers: 6
- Forks: 17
- Open Issues: 43
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- project-awesome - devbean/obsidian-wordpress - An obsidian plugin for publishing docs to WordPress. (JavaScript)
README
# obsidian-wordpress
[](https://www.buymeacoffee.com/devbean)
This plugin makes you publish Obsidian documents to WordPress.
There are some introduction videos you can watch:
* [YouTube (Chinese) by 简睿学堂-emisjerry](https://youtu.be/7YECfr_W1WM)
* [Bilibili (Chinese) by 简睿学堂-emisjerry](https://www.bilibili.com/video/BV1FT411A77m/?vd_source=8d3e1ef8cd3aab146af84cfad2f5076f)## Usages
Set your WordPress URL in settings as well as username if you want.
Put cursor in a MarkDown editor, then use **Publish to WordPress** in
[Command Palette](https://help.obsidian.md/Plugins/Command+palette)
or you could show a button in side in settings.
The document will be published to the WordPress URL that you set.You could add YAML front matter in front of notes. The plugin will read
meta-data from front matter such as override title or tags.
Also, WordPress post ID and categories will be added to this front matter
if the note published successfully in order to support edit.For example, you could add as following:
```markdown
---
title: Post title which will override note title, not required
tags:
- any tag you want
- not required
---
Note content here.
```## Limits
This plugin uses XML-RPC or REST protocol to publish to WordPress.
XML-RPC is enabled by default but some sites may disable it because of
security problems. While some shared hosts might disable XML-RPC by default
which you have no way to enable it. So this won't work if XML-RPC is disabled.REST API is enabled since WordPress 4.7 by default. Some REST API
need extra actions in order to protect writable APIs.
Traditionally, it is done by installing plugins. WordPress 5.6 was introduced
application passwords to do similar things. So if you are OK with WordPress 5.6,
application passwords is preferred as no plugin in needed.Read [this page](https://devbean.github.io/obsidian-wordpress) for more information.