Wordpress How to Check whether it is POST or PAGE

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

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

7条回答
  •  挽巷
    挽巷 (楼主)
    2020-12-30 20:25

    You can also use get_post_type() function.

    if (get_post_type() === 'post') {
        // POST
    }
    
    if (get_post_type() === 'page') {
        // PAGE
    }
    

提交回复
热议问题