是否为父子Single.php自定义发布条件?

时间:2014-01-15 作者:user4630

继续上一个问题,但需要更具体一些,所以认为一个新的主题将是最好的。。。

自定义post父项和子项在其相应的单子项上的条件标记。php,目前我有以下内容。。

    <?php if ( is_home() || is_page( \'overview\' ) || is_page( \'about\' )  ) : ?>
        Home Page
    <?php elseif ( \'artists\' == get_post_type() ): ?>
        artist parent               
    <?php elseif ( $post->post_parent > 0 ): ?> 
     artist   child
    <?php else : ?>
     empty other pages etc

   <?php endif; ?>
父母的问题在所有单身艺术家身上都有体现。php页面。

我需要特别针对单亲父母和单亲子女,是否可能,因为我不认为这是。。。?

非常感谢。

1 个回复
最合适的回答,由SO网友:Manolo 整理而成

我想您应该更改顺序,首先检查是否有家长:

<?php if ( is_home() || is_page( \'overview\' ) || is_page( \'about\' )  ) : ?>
    Home Page
<?php elseif ( $post->post_parent > 0 ): ?> 
 artist   child
<?php elseif ( \'artists\' == get_post_type() ): ?>
    artist parent               
<?php else : ?>
 empty other pages etc

结束

相关推荐