📜  is_single - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:52.389000             🧑  作者: Mango

代码示例1
// Run code only for Single post page
if ( is_single() && 'post' == get_post_type() ) {
   
}
 
//if it's not a specific post-type
if ( is_single() && 'portfolio' != get_post_type() ) {
   
}