Aurangajeb

Post Edit Link on the frontend single post page

Feb 21st, 2022
994
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. /* Post Edit Link on the frontend single post page */
  2. add_action('loop_start', function () {
  3.     if (!is_singular() || is_page() || !is_main_query()) {
  4.         return;
  5.     }
  6.  
  7.     edit_post_link(__('Edit Post'));
  8. }, 99);
Advertisement
Add Comment
Please, Sign In to add comment