What is the best way to get the page or post ID in a sidebar widget? I am trying to make sidebar widgets that do things like display a list of related file attachments for that page/post.
What is the best way to get the page or post ID in a sidebar widget? I am trying to make sidebar widgets that do things like display a list of related file attachments for that page/post.
Hi,
You can use like below:
$post_id = $GLOBALS['post']->ID;
You must log in to post.