Definition:
function install_themes_new($page = 1) {}
Display new themes/
Parameters
- string $page
Source code
function install_themes_new($page = 1) {
global $theme_field_defaults;
$args = array('browse' => 'new', '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']);
}
2057

February 12, 2011 


No comments yet... Be the first to leave a reply!