Conditional for single-{post-type}.php

Please help with this code for custom post type "video":If is single-video.php page {list custom-taxonomy of v

Please help with this code for custom post type "video":

If is single-video.php page {

     list custom-taxonomy of video. Example actors

} Else { do nothing }

I´m tried with is_single, is_singular, is_page_template but imposible.

Please help with this code for custom post type "video":

If is single-video.php page {

     list custom-taxonomy of video. Example actors

} Else { do nothing }

I´m tried with is_single, is_singular, is_page_template but imposible.

Share Improve this question edited Jan 31, 2012 at 20:54 Chip Bennett 55.1k8 gold badges91 silver badges170 bronze badges asked Oct 5, 2011 at 15:40 FontepinkFontepink 1611 gold badge1 silver badge6 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 31

According to the WordPress conditional docs it should be:

if ( is_singular( 'video' ) ) {
     // do conditional stuff

} else {
     //do other stuff
}

Also if you want a blank page or no content to show when the CPT is not video you don't really need the else so you could omit it. You could ALSO do something like:

if ( ! is_singular( 'video' ) ) {
     // do nothing

} else {
     //do conditional stuff
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745670044a4639349.html

相关推荐

  • Conditional for single-{post-type}.php

    Please help with this code for custom post type "video":If is single-video.php page {list custom-taxonomy of v

    21天前
    40

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信