这是因为默认情况下post_type
是post
.
要包含所有帖子类型,请在您的讨论中添加以下内容
$args = array( \'numberposts\' => 5, \'post_type\' => \'any\' );
以上将包括所有post\\u类型,包括页面和自定义post类型,如果要包括特定的post类型,请使用如下数组
$args = array( \'numberposts\' => 5, \'post_type\' => array( \'post\', \'movie\', \'book\' ) );
有关更多详细信息,请查看
codex