---
title: Adding a Podcast
framework: applenews
role: article
role_heading: Article
path: applenews/adding-a-podcast
---

# Adding a Podcast

Add a link to a podcast that displays the podcast artwork and the podcast show or episode information.

## Overview

Overview By using the podcast component, you can add a link to a podcast without using external assets. On this page, you’ll learn how to: Create a podcast component. Change the podcast orientation.

Add a Podcast in Your Article In Positioning Text Components, you created some ComponentLayout objects. You’ll refer to those ComponentLayout objects in this code. Copy the example code from Podcast: Copy This Code. Paste the code inside the components array of your article,  after the closing brace and comma (},) of the body component that begins with Consequatur aut doloribus. Your code should look like the example code in Podcast: Result. After you make this change in your code, you can preview your working article.json file in News Preview to see a podcast in your article. Podcast: Copy This Code     {       "role": "heading2",       "layout": "fullMarginAboveHalfBelowLayout",       "text": "PODCAST HEADING"     },     {       "role": "podcast",       "layout": "noMarginLayout",       "URL": "https://podcasts.apple.com/us/podcast/apple-news-today/id1473872585"     }, Podcast: Result Ellipses (…) indicate lines of code that have been omitted from this example. {   ...   "components": [     ...     {       "role": "heading2",       "layout": "fullMarginAboveHalfBelowLayout",       "text": "PODCAST HEADING"     },     {       "role": "podcast",       "layout": "noMarginLayout",       "URL": "https://podcasts.apple.com/us/podcast/apple-news-today/id1473872585"     },     ...   ],   ... } Adjust the Podcast Orientation The podcast you added to your article shows the default podcast orientation that changes automatically based on screen size. On larger tablet screens, the podcast art displays on the left and the podcast information and link button appear on the right. On smaller mobile screens, the artwork, podcast information, and link button appear stacked. Instead of using the orientation that automatically changes based on screen size, you can set the default orientation to lanndscape. The landscape orientation saves screen space on mobile devices. Copy the line "orientation": "landscape", Paste the line inside your podcast component, after the line that begins with "layout": After you make this change in your code, you can preview your working article.json file in News Preview to see a podcast set to landscape orientation. Podcast Orientation: Result Ellipses (…) indicate lines of code that have been omitted from this example. {   ...   "components": [     ...     {       "role": "heading2",       "layout": "fullMarginAboveHalfBelowLayout",       "text": "PODCAST HEADING"     },     {       "role": "podcast",       "layout": "noMarginLayout",       "orientation": "landscape",       "URL": "https://podcasts.apple.com/us/podcast/apple-news-today/id1473872585"     },     ...   ],   ... } Previous Adding a Tweet Next Viewing the Finished Article for the Introductory Design Tutorial

## See Also

### Introductory Design Tutorial

- [Setting Up the Introductory Tutorial](applenews/setting-up-the-introductory-tutorial.md)
- [Creating Your First Article](applenews/creating-your-first-article.md)
- [Positioning Text Components](applenews/positioning-text-components.md)
- [Adding a Divider](applenews/adding-a-divider.md)
- [Adding an Image and Captions](applenews/adding-an-image-and-captions.md)
- [Adding a Pull Quote](applenews/adding-a-pull-quote.md)
- [Adding a Gallery of Images](applenews/adding-a-gallery-of-images.md)
- [Adding a Mosaic of Images](applenews/adding-a-mosaic-of-images.md)
- [Adding a Tweet](applenews/adding-a-tweet.md)
- [Viewing the Finished Article for the Introductory Design Tutorial](applenews/viewing-the-finished-article-for-the-introductory-design-tutorial.md)
