How to check if an article is a post or a page in WordPress?
You can also use get_post_type() function.
if (get_post_type() === 'post') { // POST } if (get_post_type() === 'page') { // PAGE }