https://github.com/aiiddqd/feditor
Frontend Editor for WordPress
https://github.com/aiiddqd/feditor
editor frontend frontend-editing wordpress
Last synced: 4 months ago
JSON representation
Frontend Editor for WordPress
- Host: GitHub
- URL: https://github.com/aiiddqd/feditor
- Owner: aiiddqd
- License: mit
- Created: 2022-07-03T16:21:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-05T16:31:14.000Z (over 3 years ago)
- Last Synced: 2025-05-07T21:38:23.303Z (about 1 year ago)
- Topics: editor, frontend, frontend-editing, wordpress
- Language: PHP
- Homepage:
- Size: 355 KB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Feditor - frontend post editor for WordPress
- flexible API
- simple for start
- extensible

# addons
here https://github.com/topics/feditor-addons
# roadmap
- [ ] improve API
- [ ] add AJAX option
- [ ] addon MD https://github.com/Saul-Mirone/milkdown
- [x] field Post Title
- [x] field Category
# config
## just add editor
- add page
- add shortcode `[feditor]`
## disable title
```
add_filter('feditor_config', function($config){
$config['title_enable'] = false;
return $config;
});
```
## simple add fields
example includes/PostTitle.php
# Shortcode args
## only_draft
`[feditor only_draft=1]`
## add user for no auth
`[feditor user_id=123]`
## hide select category - only default
`[feditor default_category=1]`