php 获取CPT存档的所有帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 获取CPT存档的所有帖子相关的知识,希望对你有一定的参考价值。
// pre_get_posts to get all the posts por the CPT Archive
add_action( 'pre_get_posts', 'pre_get_posts_archive_custom_cpt' );
function pre_get_posts_archive_custom_cpt( $query ) {
if( is_admin() ) {
return;
}
if ( $query->is_post_type_archive( 'custom_cpt_name' ) && $query->is_main_query() ) {
$query->set( 'posts_per_page', -1 );
}
}
以上是关于php 获取CPT存档的所有帖子的主要内容,如果未能解决你的问题,请参考以下文章
Wordpress - 自定义帖子类型存档页面
wpml-在存档页显示所有CPT,如果未翻译,则显示默认语言
php 注册多个自定义帖子类型CPT
php 注册多个自定义帖子类型CPT
php CPT的自定义帖子状态
php 添加自定义帖子类型#cpt #cust