php 显示自定义帖子类型的兄弟页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 显示自定义帖子类型的兄弟页面相关的知识,希望对你有一定的参考价值。
<?php
global $post;
if ( isset ($post) ){
$post_parent = $post->ID;
if ( !empty($post->post_parent) ){
$post_parent = $post->post_parent;
}
$args = array( 'posts_per_page' => -1, 'post_parent' => $post->post_parent, 'post_type'=> 'custom-post-name' );
$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
<div class="col-xs-12 col-sm-6 col-md-3">
<a href="<?php the_permalink(); ?>" class="the-post">
<div class="the-img" style="background-image: url(<?php echo get_the_post_thumbnail_url(); ?>);"></div>
<div class="the-title top-border"><?php the_title(); ?></div>
</a>
</div>
<?php endforeach;
wp_reset_postdata();
}
?>
以上是关于php 显示自定义帖子类型的兄弟页面的主要内容,如果未能解决你的问题,请参考以下文章
php 在页面上显示自定义帖子类型
php 在主博客和存档页面上显示WordPress自定义帖子类型
无法获取自定义分类存档页面以显示帖子
WordPress中具有自定义帖子类型的单个页面的层次结构
Wordpress 在自定义帖子类型存档页面上按日期排序
停止显示自定义帖子类型的 wordpress 搜索