Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Check and Build
on:
pull_request:
branches:
- main
- dev
push:
branches:
- "*"
workflow_dispatch:

env:
PLUGIN_NAME: obsidian-wordpress-reloaded

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "14.x"

- name: Build
id: build
run: |
npm install
npm run build

3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ on:
push:
tags:
- "*"
workflow_dispatch:

env:
PLUGIN_NAME: obsidian-wordpress
PLUGIN_NAME: obsidian-wordpress-reloaded

jobs:
build:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.1.0](https://github.com/bugparty/obsidian-wordpress/compare/v1.0.0...v1.1.0) (2025-05-09)

### [1.0.2](https://github.com/bugparty/obsidian-wordpress/compare/v1.0.0...v1.0.2) (2025-05-09)

## [0.18.0](https://github.com/devbean/obsidian-wordpress/compare/0.17.0...0.18.0) (2023-12-20)


Expand Down
33 changes: 29 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,27 @@
# obsidian-wordpress
# obsidian-wordpress-reloaded

[<img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="BuyMeACoffee" width="100">](https://www.buymeacoffee.com/devbean)
This is a maintained fork of the [original obsidian-wordpress plugin](https://github.com/devbean/obsidian-wordpress).

## Why this fork?

The original plugin is no longer actively maintained. This fork aims to:
- Keep the plugin up-to-date with Obsidian's latest API
- Fix bugs and issues
- Add new features
- Provide active maintenance and support

This plugin makes you publish Obsidian documents to WordPress.

There are some introduction videos you can watch:
There are some introduction videos you can watch (from the original plugin):
* [YouTube (Chinese) by 简睿学堂-emisjerry](https://youtu.be/7YECfr_W1WM)
* [Bilibili (Chinese) by 简睿学堂-emisjerry](https://www.bilibili.com/video/BV1FT411A77m/?vd_source=8d3e1ef8cd3aab146af84cfad2f5076f)

## Features

All features from the original plugin, plus:
- Upload raw markdown content (new)
- More features coming soon...

## Usages

Set your WordPress URL in settings as well as username if you want.
Expand Down Expand Up @@ -48,4 +62,15 @@ 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.
## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## Credits

- Original plugin by [devbean](https://github.com/devbean)
- Current maintainer: [bugparty](https://github.com/bugparty)

## License

Apache License 2.0, same as the original plugin.
2 changes: 2 additions & 0 deletions copy_to_obsidian.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
cp main.js "/Users/bowmanhan/Library/Mobile Documents/iCloud~md~obsidian/Documents/Bowen/.obsidian/plugins/obsidian-wordpress/"
4 changes: 4 additions & 0 deletions esbuild.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ const context = await esbuild.context({
logLevel: "info",
sourcemap: prod ? false : "inline",
treeShaking: true,
minify: prod,
define: {
"process.env.NODE_ENV": prod ? '"production"' : '"development"'
},
outfile: "main.js",
});

Expand Down
Loading
Loading