继续上一个问题,但需要更具体一些,所以认为一个新的主题将是最好的。。。
自定义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页面。
我需要特别针对单亲父母和单亲子女,是否可能,因为我不认为这是。。。?
非常感谢。