golden hour
/home/godaofbq/besthyperbaric.com/wp-content/plugins/oxygen/plugin/util/wp
⬆️ Go Up
Upload
File/Folder
Size
Actions
.htaccess
420 B
Del
OK
base.php
207 B
Del
OK
conditionals.php
340 B
Del
OK
get_authors.php
727 B
Del
OK
get_posts.php
1.49 KB
Del
OK
get_terms.php
1.61 KB
Del
OK
Edit: get_authors.php
<?php namespace Breakdance\Util\WP; /** * @param string|false $searchTerm * @return \WP_User[] * @psalm-suppress MixedReturnTypeCoercion */ function get_authors($searchTerm) { return get_users($searchTerm ? [ 'search' => '*'.$searchTerm.'*', 'search_columns' => ['user_nicename', 'display_name'], // @see https://make.wordpress.org/core/2022/01/05/new-capability-queries-in-wordpress-5-9/ 'capabilities' => ['edit_posts'], ] : ['number' => TEMPLATE_POSTS_LIMIT, 'capabilities' => ['edit_posts']] ); } /** * @param int $authorId * @return string */ function get_author_permalink($authorId) { return get_author_posts_url($authorId); }
Save