関数 wp_get_user_contact_methods()
2014/12/17
関数 wp_get_user_contact_methods()
定義ファイル :/blog/wp-includes/user.php 5
1 2 3 4 5 6 7 8 9 10 11 12 | function wp_get_user_contact_methods( $user = null ) { $methods = array(); if ( get_site_option( 'initial_db_version' ) < 23588 ) { $methods = array( 'aim' => __( 'AIM' ), 'yim' => __( 'Yahoo IM' ), 'jabber' => __( 'Jabber / Google Talk' ) ); } return apply_filters( 'user_contactmethods', $methods, $user ); } |