PostReblogStatus
Get reblog status for a post.
Table Specific Information
SELECT
The driver uses the WordPress API to process some of the filters.
- PostId supports the '=' comparison.
The driver processes other filters client-side within the driver.
For example, the following queries are processed server side.
SELECT * FROM PostReblogStatus where PostId=21
Columns
| Name | Type | References | Description |
| PostId [KEY] | Int |
Posts.Id | The unique identifier of the WordPress post for which the reblog status is being checked. |
| CanReblog | Bool | Indicates whether the post is eligible to be reblogged by any WordPress user. | |
| CanUserReblog | Bool | Indicates whether the authenticated user has permission to reblog the specified post. | |
| IsReblogged | Bool | Shows whether the authenticated user has already reblogged this post. | |
| MetaAggregate | String | Contains additional metadata returned from the WordPress API related to the PostReblogStatus endpoint. |