Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
give
/
src
/
TestData
/
Framework
/
Provider
:
RandomAuthor.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Give\TestData\Framework\Provider; /** * Returns a random Author ID from the users table. */ class RandomAuthor extends RandomProvider { public function __invoke() { $authorIDs = get_users( [ 'fields' => 'ID', 'role__in' => ['administrator', 'editor', 'author'], ] ); return $this->faker->randomElement($authorIDs); } }