Custom page for editing custom post type on frontend based on url

You can add custom url structures with add_rewrite_rule for example the proposed structure in your question can be achieved with something like… add_action( ‘init’, function() { add_rewrite_rule( ‘^jobs/([^/]+)/edit/?$’, ‘index.php?post_type=jobs&name=$matches[1]’, ‘top’ ); } ); So now if you visited https://example.com/jobs/job-title-example/edit/ you should see exactly the same as if you were to visit https://example.com/jobs/job-title-example/ this is because … Read more

Live reload preview just reloads forever

This is from the Editorskit plugin, it is not a part of WordPress. If it’s broken you will need to contact their support routes. ( Based on finding the description text verbatim in a github search, resulting in a file in the preview extension of editorskit )

How can I increase the font sizes used by the WordPress visual and HTML post editors?

Put this on the top of your functions.php file after the first <?php add_action( ‘admin_print_styles-post.php’, ‘my_admin_css’ ); add_action( ‘admin_print_styles-post-new.php’, ‘my_admin_css’ ); function my_admin_css() { ?> <style type=”text/css”> #editorcontainer textarea#content { font-size:130%!important } </style> <?php } The function will print out the additional CSS on the pages where you write posts only (so it’s not loading … Read more