Definition:
function install_themes_featured($page = 1) {}
Display featured themes.
Parameters
- string $page
Source code
function install_themes_featured($page = 1) { global $theme_field_defaults; $args = array('browse' => 'featured', 'page' => $page, 'fields' => $theme_field_defaults); $api = themes_api('query_themes', $args); if ( is_wp_error($api) ) wp_die($api); display_themes($api->themes, $api->info['page'], $api->info['pages']); }
2053
No comments yet... Be the first to leave a reply!