Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Post Edit Link on the frontend single post page */
- add_action('loop_start', function () {
- if (!is_singular() || is_page() || !is_main_query()) {
- return;
- }
- edit_post_link(__('Edit Post'));
- }, 99);
Advertisement
Add Comment
Please, Sign In to add comment