| FBML has been deprecated. Starting June 1, 2012 FBML apps will no longer work as all FBML endpoints will be removed. If you are building a new application on Facebook.com, please implement your application using HTML, JavaScript and CSS. You can use our JavaScript SDK and Social Plugins to embedded many of the same social features available in FBML. |
Renders a pronoun for a specific user. If you include no additional parameters, then you is displayed if the user with uid is viewing the page. If another user is the viewer, then he or she is displayed if the gender is known; otherwise, they is displayed.
| Name | Type | Description |
|---|---|---|
| uid | int | The user ID for whom to generate the pronoun. You can specify user IDs for multiple users by separating them with a comma, as in: |
| useyou | bool | Use the word "you" if |
| possessive | bool | Use the possessive form (his/her/your/their). Default value is |
| reflexive | bool | Use the reflexive form (himself/herself/yourself/themself). Default value is |
| objective | bool | Use the objective form (him/her/you/them). Default value is |
| usethey | bool | Use "they" if gender is not specified. Default value is |
| capitalize | bool | Force a capital letter for the pronoun. Default value is |
If you're formatting the tag as FBML, you don't need to use a closing tag.
<fb:pronoun uid="12345" />
If you're formatting the tag as XFBML for Facebook Connect, you must use a closing tag.
<fb:pronoun uid="12345"></fb:pronoun>
Another FBML example.
<fb:pronoun uid="actor" possessive="true" useyou="false"/>