我正在编写一个代码,在这个代码中,我需要循环浏览给定作者的所有帖子,然后针对该作者的每篇帖子,计算该帖子的媒体附件数量,然后对其进行回应。
我能够循环浏览帖子,效果如预期,但我想计算每个帖子的附件数量,如果我失败了,请帮助。
$author_posts = get_posts( array(\'author\' => $author_id, \'numberposts\' => -1, \'post_type\'=> array(\'post\',\'download\', \'attachment\' ), \'post_status\'=> array(\'publish\',\'privatised\'), ));
这是原始循环。
下面是代码,这里的单词按预期计算,注释也按预期计算。为简单起见,建议不包括回声部分
foreach ( $author_posts as $post ) {
$View_Count = absint( get_post_meta( $post->ID, \'Creation_Views\', true ) );
$Word_Count = str_word_count( strip_tags( get_post_field( \'post_content\', $post->ID )));
$Image_Count = count( get_attached_media( \'image\', $post->ID ) );
$Comment_Count = get_comments_number($post->ID) ;
请帮助,$Image\\u Count始终为0,无论我检查哪个帖子。我有500多篇帖子,所有帖子都显示为0,而所有帖子至少都有1个附件