Wordpress How to Check whether it is POST or PAGE

后端 未结 7 2061
抹茶落季
抹茶落季 2020-12-30 19:50

How to check if an article is a post or a page in WordPress?

7条回答
  •  囚心锁ツ
    2020-12-30 20:29

    If you're looping through a collection of posts/pages (say, on a search results page), then is_single() and is_page() won't be of any use. In this situation, you could grab the global $post object (of type WP_Post) and examine the $post->post_type property. Possible values include 'post' and 'page'.

提交回复
热议问题