You appear to be a bot. Output may be restricted
Description
Determines the date of the blog from the date of the earliest registered user[0] => stdClass Object ( [ID] => 1 [user_login] => admin [user_pass] => $P$BijsY7/BdZ9AzR8YdJwYVVt68FBovk0 [user_nicename] => admin [user_email] => info@bobbingwide.com [user_url] => [user_registered] => 2010-12-23 12:22:39 [user_activation_key] => qLc3INyEWwBOsfFDnZeV [user_status] => 0 [display_name] => admin )
Usage
$string = bw_get_yearfrom();
Parameters
Returns
string year fromSource
File name: oik/includes/bobbcomp.phpLines:
1 to 5 of 5
function bw_get_yearfrom() { $users = bw_get_users(); $yearfrom = bw_format_date( $users[0]->user_registered, 'Y' ); return $yearfrom; }View on GitHub View on Trac