We'll create fresh WordPress site with Simple Front End Edit Buttons installed. You have 20 minutes to test the plugin after that site we'll be deleted.
** This plugin will no longer be updated. **
This plugins adds functions for adding edit buttons on the front end of your website.
By using the icons you can change the order (sometimes called priority)
of a page without the need to change the order manually within WordPress.
The edit icons are added automatically to standard WordPress pages widget (when sorting by page order)
and you can manually add the edit icons to any list of pages that you create yourself in your template.
It’s of great help when using WordPress as a regular CMS for a website with lots of pages,
where the pages are not sorted by date but rather by menu order.
To enable/show the icons use the following code:
<php
// This is how you add the icons manually
// The functions below can be added both at a regular page
// but also in for example a list that you create using a custom loop or similar
// Add icon for editing the post/page
if (function_exists("sfeeb_edit")) { echo sfeeb_edit(); }
// Add buttons for changing the page order
if (function_exists("sfeeb_edit_prio")) { echo sfeeb_edit_prio(); }
?>