Writerside_libraries Help

Events Page

This will document all the elements of the events screen.

1. Screen header

The information required for the screen text and the header image can be retrieved so:

Homepage header

Get page information

Getting the page title and the page's featured image requires two steps (2 requests)

  1. Request the page information

    curl -X GET 'https://maforum.ippf.org/wp-json/wp/v2/pages/91' \ --header 'x-connect-allow: string' \ --header 'Authorization: Bearer token'
    { "id": 91, "date": "2024-06-04T15:21:24", "date_gmt": "2024-06-04T15:21:24", "guid": { "rendered": "http://ma-forum.staging/?page_id=91" }, "modified": "2024-09-12T13:38:12", "modified_gmt": "2024-09-12T13:38:12", "slug": "events", "status": "publish", "type": "page", "link": "https://maforum.ippf.org/events/", "title": { "rendered": "Events" }, "content": { "rendered": "\n<p>New event</p>\n", "protected": false }, "excerpt": { "rendered": "<p>New event</p>\n", "protected": false }, "author": 1, "featured_media": 93, "parent": 0, "menu_order": 0, "comment_status": "closed", "ping_status": "closed", "template": "page-events-tpl.php", "meta": { "_acf_changed": false, "inline_featured_image": false, "footnotes": "" }, "class_list": [ "post-91", "page", "type-page", "status-publish", "has-post-thumbnail", "hentry" ], "acf": [], "lang": "en", "translations": { "en": 91, "ar": 10188, "fr": 10192 }, "pll_sync_post": [], "_links": { "self": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/pages/91", "targetHints": { "allow": [ "GET", "POST", "PUT", "PATCH", "DELETE" ] } } ], "collection": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/pages" } ], "about": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/types/page" } ], "author": [ { "embeddable": true, "href": "https://maforum.ippf.org/wp-json/wp/v2/users/1" } ], "replies": [ { "embeddable": true, "href": "https://maforum.ippf.org/wp-json/wp/v2/comments?post=91" } ], "version-history": [ { "count": 2, "href": "https://maforum.ippf.org/wp-json/wp/v2/pages/91/revisions" } ], "predecessor-version": [ { "id": 12540, "href": "https://maforum.ippf.org/wp-json/wp/v2/pages/91/revisions/12540" } ], "wp:featuredmedia": [ { "embeddable": true, "href": "https://maforum.ippf.org/wp-json/wp/v2/media/93" } ], "wp:attachment": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/media?parent=91" } ], "curies": [ { "name": "wp", "href": "https://api.w.org/{rel}", "templated": true } ] } }
    Title

    Ex. "Events" - title->rendered

    Header image

    Get the column featured_media and make the media request below.

  2. Request the media info based on information from the page request's response

    To get the featured image, you use the column featured_media which contains the ID of the media item.

    curl -X GET 'https://maforum.ippf.org/wp-json/wp/v2/media/55' \ --header 'x-connect-allow: string' \ --header 'Authorization: Bearer token'
    { "id": 36, "date": "2024-06-03T06:27:27", "date_gmt": "2024-06-03T06:27:27", "guid": { "rendered": "http://ma-forum.staging/wp-content/uploads/2024/06/home-image-opt.jpg" }, "modified": "2024-06-03T06:27:27", "modified_gmt": "2024-06-03T06:27:27", "slug": "home-image-opt", "status": "inherit", "type": "attachment", "link": "https://maforum.ippf.org/ma-forum/home-image-opt/", "title": { "rendered": "home-image-opt" }, "author": 1, "featured_media": 0, "comment_status": "", "ping_status": "closed", "template": "", "meta": { "_acf_changed": false, "inline_featured_image": false }, "class_list": [ "post-36", "attachment", "type-attachment", "status-inherit", "hentry" ], "acf": [], "lang": "en", "translations": { "en": 36, "fr": 9298, "es": 9306, "ar": 9314 }, "pll_sync_post": [], "description": { "rendered": "&lt;p class=\"attachment\"&gt;&lt;a href='https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt.jpg'&gt;&lt;img decoding=\"async\" width=\"300\" height=\"176\" src=\"https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-300x176.jpg\" class=\"attachment-medium size-medium\" alt=\"\" srcset=\"https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-300x176.jpg 300w, https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-1024x602.jpg 1024w, https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-768x451.jpg 768w, https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-1536x902.jpg 1536w, https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt.jpg 1920w\" sizes=\"(max-width: 300px) 100vw, 300px\" /&gt;&lt;/a&gt;&lt;/p&gt;\n" }, "caption": { "rendered": "" }, "alt_text": "", "media_type": "image", "mime_type": "image/jpeg", "media_details": { "width": 1920, "height": 1128, "file": "2024/06/home-image-opt.jpg", "filesize": 195319, "sizes": { "medium": { "file": "home-image-opt-300x176.jpg", "width": 300, "height": 176, "filesize": 18839, "mime_type": "image/jpeg", "source_url": "https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-300x176.jpg" }, "large": { "file": "home-image-opt-1024x602.jpg", "width": 1024, "height": 602, "filesize": 134639, "mime_type": "image/jpeg", "source_url": "https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-1024x602.jpg" }, "thumbnail": { "file": "home-image-opt-150x150.jpg", "width": 150, "height": 150, "filesize": 9371, "mime_type": "image/jpeg", "source_url": "https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-150x150.jpg" }, "medium_large": { "file": "home-image-opt-768x451.jpg", "width": 768, "height": 451, "filesize": 85834, "mime_type": "image/jpeg", "source_url": "https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-768x451.jpg" }, "1536x1536": { "file": "home-image-opt-1536x902.jpg", "width": 1536, "height": 902, "filesize": 243107, "mime_type": "image/jpeg", "source_url": "https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-1536x902.jpg" }, "medium-thumb-size": { "file": "home-image-opt-500x500.jpg", "width": 500, "height": 500, "filesize": 63891, "mime_type": "image/jpeg", "source_url": "https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt-500x500.jpg" }, "full": { "file": "home-image-opt.jpg", "width": 1920, "height": 1128, "mime_type": "image/jpeg", "source_url": "https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt.jpg" } }, "image_meta": { "aperture": "0", "credit": "", "camera": "", "caption": "", "created_timestamp": "0", "copyright": "", "focal_length": "0", "iso": "0", "shutter_speed": "0", "title": "", "orientation": "0", "keywords": [] } }, "post": 25, "source_url": "https://maforum.ippf.org/wp-content/uploads/2024/06/home-image-opt.jpg", "_links": { "self": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/media/36", "targetHints": { "allow": [ "GET", "POST", "PUT", "PATCH", "DELETE" ] } } ], "collection": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/media" } ], "about": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/types/attachment" } ], "author": [ { "embeddable": true, "href": "https://maforum.ippf.org/wp-json/wp/v2/users/1" } ], "replies": [ { "embeddable": true, "href": "https://maforum.ippf.org/wp-json/wp/v2/comments?post=36" } ] } }
    Image URL

    Choose what size you want. I think you should go with large, but you check how it all displays. media_details->sizes->large->source_url

2. In the spotlight

The information required for this section can be retrieved so:

Spotlight
curl -X GET 'https://maforum.ippf.org/wp-json/wp/v2/events?per_page=1&orderby=date&order=desc&lang=en&featured=1' \ --header 'x-connect-allow: string' \ --header 'Authorization: Bearer token'
[ { "id": 19665, "date": "2025-07-25T12:03:46", "date_gmt": "2025-07-25T11:03:46", "guid": { "rendered": "https://maforum.ippf.org/?post_type=event&#038;p=19665" }, "modified": "2025-07-25T12:03:46", "modified_gmt": "2025-07-25T11:03:46", "slug": "ippf-strategy-2028-lead-with-love-resistance-v-resilience-where-are-we", "status": "publish", "type": "event", "link": "https://maforum.ippf.org/event/ippf-strategy-2028-lead-with-love-resistance-v-resilience-where-are-we/", "title": { "rendered": "IPPF Strategy 2028 Lead With Love Resistance V Resilience: Where Are We?" }, "content": { "rendered": "\n<h2 class=\"wp-block-heading has-text-align-center\">IPPF MID TERM REFLECTION</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-19670\" srcset=\"https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-1024x1024.jpg 1024w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-300x300.jpg 300w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-150x150.jpg 150w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-768x768.jpg 768w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-500x500.jpg 500w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1.jpg 1080w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">Session Details</h2>\n\n\n\n<p>مع اكتساب الحركة المناهضة للحقوق زخمًا على مستوى العالم، مدعومة بحملات تضليل/معلومات مضللة ممولةAs the anti-rights movement gains momentum globally, supported by well-funded mis/disinformation campaigns and neofascist actors, IPPF member associations(MAs) and collaborative partners (CPs) face increasing pressure to refine their strategies and reclaim public discourse on sexual and reproductive health and rights (SRHR).</p>\n\n\n\n<p>In the lead-up to the General Assembly, the Mid-Term Reflection Webinar Series provides General Assembly delegates,&nbsp;<strong>Executive Directors, Board Chairs, and Youth board reps</strong>&nbsp;with a critical, &#8220;honest and forthright&#8221; space for reflection on the successes, challenges, and adaptive approaches in advancing SRHR amid growing opposition from anti-rights mobilisation and how MAs have been working to counter regressive narratives,mobilize communities to build political momentum and leverage storytelling to inspire action.</p>\n\n\n\n<p>Don’t miss this opportunity to share, shape and accelerate our drive towards strategic delivery in 2028.</p>\n\n\n\n<p id=\"block-d9525f72-d04f-411d-9453-10a6ec2dcc16\">Register now and be part of the conversation!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-73ef5f2d-045e-4e51-95d1-fb04f7e2a785\">Webinar Details</h2>\n\n\n\n<p id=\"block-449120f2-40dc-40e9-8e05-943c8c65f1c0\"><strong>Zoom webinar registrationdetails</strong>: <a href=\"http://bit.ly/4kT5JUB\">http://bit.ly/4kT5JUB</a></p>\n\n\n\n<p><strong>Date</strong>: Thursday 7<sup>th</sup>&nbsp;August</p>\n\n\n\n<p><strong>Time</strong>: 13:00-14:30 BST</p>\n\n\n\n<p>recording will(Interpretation and recordingwill be available in English, Spanish, French and Arabic)</p>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">We look forward to your participation.</h2>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">IPPF Mid Term Reflection Webinar Series</h2>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\" id=\"block-449120f2-40dc-40e9-8e05-943c8c65f1c0\"><em>&#8220;Delivering better, failing faster, adapting quicker&#8221;</em></h2>\n\n\n\n<p id=\"block-6a1cf1d4-378b-4937-9874-19837be4dfc2\"></p>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\" id=\"block-684ffd0b-ff13-4634-b06b-9c8e83a9364e\"></h2>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\"></h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" width=\"1000\" height=\"1024\" src=\"https://maforum.ippf.org/wp-content/uploads/2025/07/image-1-1000x1024.png\" alt=\"\" class=\"wp-image-19642\" style=\"width:138px;height:auto\" srcset=\"https://maforum.ippf.org/wp-content/uploads/2025/07/image-1-1000x1024.png 1000w, https://maforum.ippf.org/wp-content/uploads/2025/07/image-1-293x300.png 293w, https://maforum.ippf.org/wp-content/uploads/2025/07/image-1-768x786.png 768w, https://maforum.ippf.org/wp-content/uploads/2025/07/image-1.png 1038w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></div>\n\n\n<figure class=\"wp-block-video\"><video controls poster=\"https://maforum.ippf.org/wp-content/uploads/2025/07/MTR2-Teaser-mov-image.jpg\" src=\"https://maforum.ippf.org/wp-content/uploads/2025/07/MTR2-Teaser.mov\"></video></figure>\n", "protected": false }, "featured_media": 19670, "template": "", "class_list": [ "post-19665", "event", "type-event", "status-publish", "has-post-thumbnail", "hentry" ], "acf": { "attachment": false, "event_date": "07/08/2025", "event_type": " - Webinar", "event_location": " - Zoom", "event_duration": " - 1.5 hours", "display_on_home": true, "featured": true, "spotlight": true }, "lang": "en", "translations": { "en": 19665, "fr": 19671, "es": 19673, "ar": 19675 }, "pll_sync_post": { "en": true }, "_links": { "self": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/events/19665", "targetHints": { "allow": [ "GET", "POST", "PUT", "PATCH", "DELETE" ] } } ], "collection": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/events" } ], "about": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/types/event" } ], "wp:featuredmedia": [ { "embeddable": true, "href": "https://maforum.ippf.org/wp-json/wp/v2/media/19670" } ], "wp:attachment": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/media?parent=19665" } ], "curies": [ { "name": "wp", "href": "https://api.w.org/{rel}", "templated": true } ] } } ]
Title

Ex. "In the spotlight #1 ..." - title->rendered.

Date

Ex. "4/11/2023" - date_gmt

Text

Ex. "Yesterday I did not ..." - content->rendered

Image

You need to request featured media using featured_media

Button text
  • EN: Read more

  • ES: Seguir leyendo

  • FR: Lire la suite

  • AR: قراءة المزيد

3. Events

The information required for this section can be retrieved so:

Events

This should display all news. You can paginate by using per_page and page query strings.

curl -X GET 'https://maforum.ippf.org/wp-json/wp/v2/events?per_page=10&lang=en&orderby=date&order=desc&page=1' \ --header 'x-connect-allow: string' \ --header 'Authorization: Bearer token'
[ { "id": 19665, "date": "2025-07-25T12:03:46", "date_gmt": "2025-07-25T11:03:46", "guid": { "rendered": "https://maforum.ippf.org/?post_type=event&#038;p=19665" }, "modified": "2025-07-25T12:03:46", "modified_gmt": "2025-07-25T11:03:46", "slug": "ippf-strategy-2028-lead-with-love-resistance-v-resilience-where-are-we", "status": "publish", "type": "event", "link": "https://maforum.ippf.org/event/ippf-strategy-2028-lead-with-love-resistance-v-resilience-where-are-we/", "title": { "rendered": "IPPF Strategy 2028 Lead With Love Resistance V Resilience: Where Are We?" }, "content": { "rendered": "\n<h2 class=\"wp-block-heading has-text-align-center\">IPPF MID TERM REFLECTION</h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"1024\" src=\"https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-1024x1024.jpg\" alt=\"\" class=\"wp-image-19670\" srcset=\"https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-1024x1024.jpg 1024w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-300x300.jpg 300w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-150x150.jpg 150w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-768x768.jpg 768w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1-500x500.jpg 500w, https://maforum.ippf.org/wp-content/uploads/2025/07/Lead-With-Love-eng-1.jpg 1080w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">Session Details</h2>\n\n\n\n<p>مع اكتساب الحركة المناهضة للحقوق زخمًا على مستوى العالم، مدعومة بحملات تضليل/معلومات مضللة ممولةAs the anti-rights movement gains momentum globally, supported by well-funded mis/disinformation campaigns and neofascist actors, IPPF member associations(MAs) and collaborative partners (CPs) face increasing pressure to refine their strategies and reclaim public discourse on sexual and reproductive health and rights (SRHR).</p>\n\n\n\n<p>In the lead-up to the General Assembly, the Mid-Term Reflection Webinar Series provides General Assembly delegates,&nbsp;<strong>Executive Directors, Board Chairs, and Youth board reps</strong>&nbsp;with a critical, &#8220;honest and forthright&#8221; space for reflection on the successes, challenges, and adaptive approaches in advancing SRHR amid growing opposition from anti-rights mobilisation and how MAs have been working to counter regressive narratives,mobilize communities to build political momentum and leverage storytelling to inspire action.</p>\n\n\n\n<p>Don’t miss this opportunity to share, shape and accelerate our drive towards strategic delivery in 2028.</p>\n\n\n\n<p id=\"block-d9525f72-d04f-411d-9453-10a6ec2dcc16\">Register now and be part of the conversation!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-73ef5f2d-045e-4e51-95d1-fb04f7e2a785\">Webinar Details</h2>\n\n\n\n<p id=\"block-449120f2-40dc-40e9-8e05-943c8c65f1c0\"><strong>Zoom webinar registrationdetails</strong>: <a href=\"http://bit.ly/4kT5JUB\">http://bit.ly/4kT5JUB</a></p>\n\n\n\n<p><strong>Date</strong>: Thursday 7<sup>th</sup>&nbsp;August</p>\n\n\n\n<p><strong>Time</strong>: 13:00-14:30 BST</p>\n\n\n\n<p>recording will(Interpretation and recordingwill be available in English, Spanish, French and Arabic)</p>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">We look forward to your participation.</h2>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\">IPPF Mid Term Reflection Webinar Series</h2>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\" id=\"block-449120f2-40dc-40e9-8e05-943c8c65f1c0\"><em>&#8220;Delivering better, failing faster, adapting quicker&#8221;</em></h2>\n\n\n\n<p id=\"block-6a1cf1d4-378b-4937-9874-19837be4dfc2\"></p>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\" id=\"block-684ffd0b-ff13-4634-b06b-9c8e83a9364e\"></h2>\n\n\n\n<h2 class=\"wp-block-heading has-text-align-center\"></h2>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img decoding=\"async\" width=\"1000\" height=\"1024\" src=\"https://maforum.ippf.org/wp-content/uploads/2025/07/image-1-1000x1024.png\" alt=\"\" class=\"wp-image-19642\" style=\"width:138px;height:auto\" srcset=\"https://maforum.ippf.org/wp-content/uploads/2025/07/image-1-1000x1024.png 1000w, https://maforum.ippf.org/wp-content/uploads/2025/07/image-1-293x300.png 293w, https://maforum.ippf.org/wp-content/uploads/2025/07/image-1-768x786.png 768w, https://maforum.ippf.org/wp-content/uploads/2025/07/image-1.png 1038w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></div>\n\n\n<figure class=\"wp-block-video\"><video controls poster=\"https://maforum.ippf.org/wp-content/uploads/2025/07/MTR2-Teaser-mov-image.jpg\" src=\"https://maforum.ippf.org/wp-content/uploads/2025/07/MTR2-Teaser.mov\"></video></figure>\n", "protected": false }, "featured_media": 19670, "template": "", "class_list": [ "post-19665", "event", "type-event", "status-publish", "has-post-thumbnail", "hentry" ], "acf": { "attachment": false, "event_date": "07/08/2025", "event_type": " - Webinar", "event_location": " - Zoom", "event_duration": " - 1.5 hours", "display_on_home": true, "featured": true, "spotlight": true }, "lang": "en", "translations": { "en": 19665, "fr": 19671, "es": 19673, "ar": 19675 }, "pll_sync_post": { "en": true }, "_links": { "self": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/events/19665", "targetHints": { "allow": [ "GET", "POST", "PUT", "PATCH", "DELETE" ] } } ], "collection": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/events" } ], "about": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/types/event" } ], "wp:featuredmedia": [ { "embeddable": true, "href": "https://maforum.ippf.org/wp-json/wp/v2/media/19670" } ], "wp:attachment": [ { "href": "https://maforum.ippf.org/wp-json/wp/v2/media?parent=19665" } ], "curies": [ { "name": "wp", "href": "https://api.w.org/{rel}", "templated": true } ] } } ]
Title

Ex. "Hostilities ..." - title->rendered.

Date

Ex. "4/11/2023" - date_gmt

Image

You need to make an API call using featured_media

Button text
  • EN: Read more

  • ES: Seguir leyendo

  • FR: Lire la suite

  • AR: قراءة المزيد

19 August 2025