Post Button Parameter Reference
A Post button supports pre-populating share text, hashtags, and a X account reference. Associate related X accounts to drive followers.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description | Example |
|---|---|---|
text | Pre-populated text highlighted in the Post composer. | custom share text |
url | URL included with the Post. | https://dev.x.com/web/post-button |
hashtags | A comma-separated list of hashtags to be appended to default Post text. | example,demo |
via | Attribute the source of a Post to a X username. | xdevelopers |
related | A comma-separated list of accounts related to the content of the shared URI. | xapi,x |
| Parameter | Description | Example |
|---|---|---|
size | When set to large, display a larger version of the button. Set to l for iframe. | large |
lang | A supported X language code. | es |
dnt | When set to true, the button and its embedded page on your site are not used for purposes that include personalized suggestions and personalized ads. | true |
data-* example<a class="twitter-share-button"
href="https://x.com/intent/tweet"
data-size="large"
data-text="custom share text"
data-url="https://dev.x.com/web/tweet-button"
data-hashtags="example,demo"
data-via="xdevelopers"
data-related="xapi,x">
Post
</a>
twttr.widgets.createShareButton(
"https:\/\/dev.x.com\/web\/tweet-button",
document.getElementById("tweet-container"),
{
size: "large",
text: "custom share text",
hashtags: "example,demo",
via: "xdevelopers",
related: "xapi,x"
}
);