Skip to content

aiiddqd/feditor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Feditor - frontend post editor for WordPress

  • flexible API
  • simple for start
  • extensible

Frontend Editor WordPress

addons

here https://github.com/topics/feditor-addons

roadmap

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]