{"id":29881077,"url":"https://github.com/bph/gt-podcast-bb","last_synced_at":"2025-10-13T08:02:18.380Z","repository":{"id":305950266,"uuid":"1024126248","full_name":"bph/gt-podcast-bb","owner":"bph","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-22T19:41:23.000Z","size":184,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-22T21:21:54.552Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bph.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-22T08:16:26.000Z","updated_at":"2025-07-22T19:41:26.000Z","dependencies_parsed_at":"2025-07-22T21:21:56.577Z","dependency_job_id":"09cc1b7f-07d0-47ea-98a5-065bb9f8b5f6","html_url":"https://github.com/bph/gt-podcast-bb","commit_stats":null,"previous_names":["bph/gt-podcast-bb"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/bph/gt-podcast-bb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bph%2Fgt-podcast-bb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bph%2Fgt-podcast-bb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bph%2Fgt-podcast-bb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bph%2Fgt-podcast-bb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bph","download_url":"https://codeload.github.com/bph/gt-podcast-bb/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bph%2Fgt-podcast-bb/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268024036,"owners_count":24183133,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-07-31T10:22:06.455Z","updated_at":"2025-10-13T08:02:18.374Z","avatar_url":"https://github.com/bph.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Podcast data for block themes\nPlugin to make podcast data available to the block editor and block themes.\n\nIt adds \n- Social Link icons for podcast direcotries \n- BlockBindings for [Seriously Simple podcasting plugin](https://wordpress.org/plugins/seriously-simple-podcasting/) data to to be used in a custom archive template.\n- Block Variations for the bound blocks\n- An archive template for `taxonomy-series`\n\nBesides the Seriously Simply Podcasting plugins it also need the [Gutenberg plugin v. 21.1](https://wordpress.org/plugins/gutenberg) or WordPress 6.9 after its release to work. \n\n[![Test it with Playground](assets/Test-on-WordPress-Playground.svg)](https://playground.wordpress.net?blueprint-url=https://raw.githubusercontent.com/bph/gt-podcast-bb/refs/heads/main/_blueprint/blueprint.json)\n\n----\n\n![Podcast Archive page](assets/POC-podcast-archive-page.png)\n\nUse block markup in the Code Editor: \n### Archive Header\n\n### Podcast description\n``` \n\u003c!-- wp:paragraph {\"metadata\":{\"bindings\":{\"content\":{\"source\":\"gtimes/episode-data\",\"args\":{\"key\":\"podcast_description\"}}}}} --\u003e\n  \u003cp\u003e\u003c/p\u003e\n  \u003c!-- /wp:paragraph --\u003e\n```\n### Podcast logo\n``` \n \u003c!-- wp:image {\"metadata\":{\"bindings\":{\"url\":{\"source\":\"gtimes/episode-data\",\"args\":{\"key\":\"podcast_image\"}}}}} --\u003e\n  \u003cfigure class=\"wp-block-image\"\u003e\u003cimg src=\"#\" alt=\"\"/\u003e\u003c/figure\u003e\n  \u003c!-- /wp:image --\u003e\n  ```\n\n## Episode Query Loop\n\n### Cover image\n```  \n\u003c!-- wp:image {\"align\":\"left\",\"width\":\"400px\",\"height\":\"400px\",\"metadata\":{\"bindings\":{\"url\":{\"source\":\"gtimes/episode-data\",\"args\":\n  {\"key\":\"cover_image\"}}}}} --\u003e\n  \u003cfigure class=\"wp-block-image alignleft\" style=\"width:400px;height:400px\"\u003e\u003cimg src=\"#\" alt=\"\" \n  style=\"width:400px;height:400px\"/\u003e\u003c/figure\u003e\n  \u003c!-- /wp:image --\u003e\n \n  ```\n\n### Download button\n```  \n\u003c!-- wp:button {\"metadata\":{\"bindings\":{\"url\":{\"source\":\"gtimes/episode-data\",\"args\":{\"key\":\"download_link\"}}}}} --\u003e\n  \u003cdiv class=\"wp-block-button\"\u003e\u003ca class=\"wp-block-button__link wp-element-button\" href=\"#\"\u003eDownload Episode\u003c/a\u003e\u003c/div\u003e\n\u003c!-- /wp:button --\u003e\n  ```\n### Recording date\n```\n  \u003c!-- wp:paragraph {\"metadata\":{\"bindings\":{\"content\":{\"source\":\"gtimes/episode-data\",\"args\":{\"key\":\"recording_date\"}}}}} --\u003e\n  ```\n\n  ## Block variations\n  To make it easier for no-code content creator to use those block bindinds, I added Block variations to the plugin. \n  - Episode Recording Date \n  - Podcast Description\n  - Episode Cover Image\n  - Podcast Logo \n  - Episode Download Button \n\n  ![Podcast block variations](assets/podcast-description-logo.png)\n  ![Episode block variations](assets/Episode-recording-date-coverimage.png)\n\n\n  \u003e [!TIP]\n  \u003e They all appear with their names in the Block editor inserter, except for the Download button, it only appears once there is a \"Buttons\" block on canvas and it is added to the parent block. \n\n![Episode download button](assets/Episode-download-button.png)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbph%2Fgt-podcast-bb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbph%2Fgt-podcast-bb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbph%2Fgt-podcast-bb/lists"}