在下面的代码段中可以找到将帖子从自定义帖子类型“图片”拉入主页和日期存档页的内容。。
添加到functions.php
这适用于主页:
function add_custom_post_type_to_query( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( \'post_type\', array(\'post\', \'pictures\') );
}
}
add_action( \'pre_get_posts\', \'add_custom_post_type_to_query\' );
但这两者都不适用:function add_custom_post_type_to_query( $query ) {
if ( $query->is_home() && $query->is_date() && $query->is_main_query() ) {
$query->set( \'post_type\', array(\'post\', \'pictures\') );
}
}
add_action( \'pre_get_posts\', \'add_custom_post_type_to_query\' );
还想添加!is_admin()
保持管理屏幕清晰,但不知道如何操作。谢谢