Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

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'];
   }
Source by learnwith.hasinhayder.com #
 
PREVIOUS NEXT
Tagged: #query #current #editing #post #id
ADD COMMENT
Topic
Name
4+3 =