Answers for "query for current editing post id"

PHP
0

query for current editing post id

// finding current editing post's id
   $post_id = null;
   if (isset($_REQUEST['post']) || isset($_REQUEST['post_ID'])) {
      $post_id = empty($_REQUEST['post_ID']) ? $_REQUEST['post'] : $_REQUEST['post_ID'];
   }
Posted by: Guest on April-16-2022

Browse Popular Code Answers by Language