post_status == 'publish' && in_array($post->post_type, Helper::get_list_post_type())) { $wordCount = $this->calculate($post->post_content); $this->saveWordsCount($postId, $wordCount); } } public function getPostsWithoutWordCountMeta() { return get_posts([ 'post_type' => Helper::get_list_post_type(), 'post_status' => 'publish', 'numberposts' => -1, 'meta_key' => self::WORDS_COUNT_META_KEY, 'meta_compare' => 'NOT EXISTS', 'fields' => 'ids' ]); } }