{"id":16056484,"url":"https://github.com/garyjones/visual-subtitle","last_synced_at":"2026-04-29T17:08:57.128Z","repository":{"id":141801980,"uuid":"2524814","full_name":"GaryJones/visual-subtitle","owner":"GaryJones","description":"WordPress plugin. Allows part of a post title to be styled as a subtitle. Classic Editor only.","archived":false,"fork":false,"pushed_at":"2020-08-01T14:54:38.000Z","size":153,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"develop","last_synced_at":"2025-04-05T08:14:27.588Z","etag":null,"topics":["wordpress","wordpress-plugin"],"latest_commit_sha":null,"homepage":"https://wordpress.org/plugins/visual-subtitle/","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/GaryJones.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}},"created_at":"2011-10-06T08:36:57.000Z","updated_at":"2020-08-01T14:59:29.000Z","dependencies_parsed_at":"2023-04-03T12:05:41.823Z","dependency_job_id":null,"html_url":"https://github.com/GaryJones/visual-subtitle","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/GaryJones/visual-subtitle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GaryJones%2Fvisual-subtitle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GaryJones%2Fvisual-subtitle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GaryJones%2Fvisual-subtitle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GaryJones%2Fvisual-subtitle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GaryJones","download_url":"https://codeload.github.com/GaryJones/visual-subtitle/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GaryJones%2Fvisual-subtitle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32435231,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T13:34:34.882Z","status":"ssl_error","status_checked_at":"2026-04-29T13:34:29.830Z","response_time":110,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["wordpress","wordpress-plugin"],"created_at":"2024-10-09T02:41:58.318Z","updated_at":"2026-04-29T17:08:57.092Z","avatar_url":"https://github.com/GaryJones.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Visual Subtitle\n\nAllows part of a post title to be styled as a subtitle. It is still within the title heading, but is wrapped in a span to be styled differently.\n\n## Installation\n\n### Upload\n\n1. Download the latest tagged archive (choose the \"zip\" option).\n2. Go to the __Plugins -\u003e Add New__ screen and click the __Upload__ tab.\n3. Upload the zipped archive directly.\n4. Go to the Plugins screen and click __Activate__.\n\n### Manual\n\n1. Download the latest tagged archive (choose the \"zip\" option).\n2. Unzip the archive.\n3. Copy the folder to your `/wp-content/plugins/` directory.\n4. Go to the Plugins screen and click __Activate__.\n\nCheck out the Codex for more information about [installing plugins manually](http://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation).\n\n### Git\n\nUsing git, browse to your `/wp-content/plugins/` directory and clone this repository:\n\n`git clone git@github.com:GaryJones/Visual-Subtitle.git`\n\nThen go to your Plugins screen and click __Activate__.\n\n## Description \n\nThis plugin adds a Visual Subtitle field to all post, page and custom post types that have support for a title, using the Classic Editor. It doesn't work with the Block Editor.\n\nIn a future version, this plugin may include a user interface with a list of checkboxes, so users can deselect which post types visual subtitle is applied to.\n\nThose comfortable with code can filter the indexed array of post types via the `visual_subtitle_supported_types` filter.\n\nThe plugin allows you to include a string of text that will still be part of the post title, but be wrapped in a `small` tag, giving something like:\n\n`\u003ch1\u003eMain Title\u003csmall class=\"subtitle\"\u003eThis is a subtitle\u003c/small\u003e\u003c/h1\u003e`\n\nKeeping it as part of the main level 1 or two heading, means it maintains as much keyword SEO importance as the main title, yet can be given a style (in your own theme) of `display: block;` to make it visually appear as a subtitle.\n\nThe visual subtitle is appended to to the title on on the Posts screen, with a ` | ` separator, and appended to the title part of the document title with a filterable colon and space (`: `) separator.\n\n## Screenshots\n\n![The back-end interface, showing the Visual Subtitle field.](https://raw.github.com/GaryJones/Visual-Subtitle/develop/.wordpress-org/screenshot-1.png)  \n_The back-end interface, showing the Visual Subtitle field._\n\n---\n\n![Showing the visual subtitle on the front-end, in this case, styled red, smaller, italic and bold.](https://raw.github.com/GaryJones/Visual-Subtitle/develop/.wordpress-org/screenshot-2.png)  \n_Showing the visual subtitle on the front-end, in this case, styled red, smaller, italic and bold._\n\n---\n\n![The front-end markup, showing the span inside the existing heading element (may differ for your own theme).](https://raw.github.com/GaryJones/Visual-Subtitle/develop/.wordpress-org/screenshot-3.png)  \n_The front-end markup, showing the span inside the existing heading element (may differ for your own theme)._\n\n---\n\n![Showing the subtitle in the Posts list - the second entry has no subtitle.](https://raw.github.com/GaryJones/Visual-Subtitle/develop/.wordpress-org/screenshot-4.png)  \n_Showing the subtitle in the Posts list - the second entry has no subtitle._\n\n---\n\n![The subtitle can also be amended from the quick edit feature.](https://raw.github.com/GaryJones/Visual-Subtitle/develop/.wordpress-org/screenshot-5.png)  \n_The subtitle can also be amended from the quick edit feature._\n\n## Credits\n\nBuilt by [Gary Jones](https://twitter.com/GaryJ)  \nCopyright 2013 [Gary Jones](https://garyjones.io/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgaryjones%2Fvisual-subtitle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgaryjones%2Fvisual-subtitle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgaryjones%2Fvisual-subtitle/lists"}