This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* WP Post object. Only properties needed by the code are included. | |
* | |
* @typedef {object} WPPost | |
* @property {number} id ID of post. | |
* @property {number} author Post author ID. | |
* @property {number[]} categories IDs of associated categories. | |
* @property {number[]} tags IDs of associated tags. | |
* @property {number} featured_media ID of featured image. | |
*/ |