0.13.0 - Added <podcast:location> support #17
vnali
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Since 0.13.0, Studio plugin added support for podcast:location.
Steps to provide
<podcast:location>
in podcast RSS for<channel>
or<item>
elements:For generating the
<podcast:location>
tag, there should be a custom field for representing location items. you can use thepodcastLocation
/episodeLocation
default handles or you can specify this handle on the config/studio.php file on your project.podcast:location
tag on RSS, only has one item and the value of this item is the value of this custom field.name
,geo
, (instead of geo you can havelat
,lon
coulmns), andosm
.name
column is used for node value,geo
is used for geo attribute (should be ingeo:{latitude},{longitude}
format), andosm
is used for creating osm attribute.lat
andlon
columns can be used for creating the geo attribute (final output is geo:lat:lon).name
column are ignored when the plugin creates<podcast:location>
tags.location
block type -or you can specify this block type handle bypodcastLocationBlockType
orepisodeLocationBlockType
config item-.In this case, you can implement
podcast:location
in different ways:location
handlepodcast:location
node value.location
handlelocation
handle<podcast:location>
tags.Beta Was this translation helpful? Give feedback.
All reactions