{"id":272003,"date":"2026-03-10T08:13:49","date_gmt":"2026-03-10T08:13:49","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/post-subtitle-plus\/"},"modified":"2026-03-10T08:13:18","modified_gmt":"2026-03-10T08:13:18","slug":"dropndot-post-subtitle","status":"publish","type":"plugin","link":"https:\/\/da.wordpress.org\/plugins\/dropndot-post-subtitle\/","author":14438263,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"1.0.0","stable_tag":"1.0.0","tested":"6.9.4","requires":"6.3","requires_php":"7.4","requires_plugins":null,"header_name":"Dropndot Post Subtitle","header_author":"Dropndot Solutions","header_description":"This plugin lets you add subtitles to posts, pages, and custom post types. It works with both the Classic Editor and Gutenberg, and supports WPGraphQL and the REST API.","assets_banners_color":"822079","last_updated":"2026-03-10 08:13:18","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"","header_author_uri":"https:\/\/dropndot.com\/","rating":0,"author_block_rating":0,"active_installs":0,"downloads":158,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":{"1.0.0":{"tag":"1.0.0","author":"Dropndot","date":"2026-03-10 08:13:18"}},"upgrade_notice":{"1.0.0":"<p>Code cleanup and improved file organization. Recommended update for better performance.<\/p>","1.0.2":"<p>Fixes Gutenberg integration issues. Update recommended.<\/p>"},"ratings":[],"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":3478871,"resolution":"128x128","location":"assets","locale":""},"icon-256x256.png":{"filename":"icon-256x256.png","revision":3478871,"resolution":"256x256","location":"assets","locale":""},"icon.svg":{"filename":"icon.svg","revision":3478871,"resolution":false,"location":"assets","locale":false}},"assets_banners":{"banner-1544x500.png":{"filename":"banner-1544x500.png","revision":3478871,"resolution":"1544x500","location":"assets","locale":""},"banner-772x250.png":{"filename":"banner-772x250.png","revision":3478871,"resolution":"772x250","location":"assets","locale":""}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0.0"],"block_files":[],"assets_screenshots":[],"screenshots":{"1":"Gutenberg editor with subtitle panel in sidebar","2":"Classic editor with subtitle field below title","3":"Settings page for configuring post type support","4":"Admin columns showing subtitles in posts list","5":"Quick edit with subtitle field"},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[257423,257422,257421,34315,27479],"plugin_category":[],"plugin_contributors":[229120],"plugin_business_model":[],"class_list":["post-272003","plugin","type-plugin","status-publish","hentry","plugin_tags-graphql-rest-api","plugin_tags-page-subtitle","plugin_tags-post-subtitle","plugin_tags-subheading","plugin_tags-subtitle","plugin_contributors-dropndot","plugin_committers-dropndot"],"banners":{"banner":"https:\/\/ps.w.org\/dropndot-post-subtitle\/assets\/banner-772x250.png?rev=3478871","banner_2x":"https:\/\/ps.w.org\/dropndot-post-subtitle\/assets\/banner-1544x500.png?rev=3478871","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":"https:\/\/ps.w.org\/dropndot-post-subtitle\/assets\/icon.svg?rev=3478871","icon":"https:\/\/ps.w.org\/dropndot-post-subtitle\/assets\/icon.svg?rev=3478871","icon_2x":false,"generated":false},"screenshots":[],"raw_content":"<!--section=description-->\n<p>Dropndot Post Subtitle allows you to easily add subtitles (subheadings) to your WordPress posts, pages, and custom post types. The plugin integrates seamlessly with both Gutenberg and Classic Editor, and provides full support for modern WordPress development with WPGraphQL and REST API integration.<\/p>\n\n<h4>Features<\/h4>\n\n<ul>\n<li><strong>Gutenberg Sidebar Panel<\/strong> - Easy-to-use subtitle field in the document sidebar<\/li>\n<li><strong>Classic Editor Support<\/strong> - Subtitle field appears right after the title<\/li>\n<li><strong>Custom Post Types<\/strong> - Enable subtitles for any post type<\/li>\n<li><strong>WPGraphQL Integration<\/strong> - Query subtitles in your GraphQL queries<\/li>\n<li><strong>REST API Support<\/strong> - Access subtitles via WordPress REST API<\/li>\n<li><strong>Quick Edit<\/strong> - Edit subtitles directly from the posts list<\/li>\n<li><strong>Admin Columns<\/strong> - See subtitles at a glance in the admin<\/li>\n<li><strong>Shortcodes<\/strong> - Display subtitles anywhere with <code>[dropposu_subtitle]<\/code><\/li>\n<li><strong>Developer Friendly<\/strong> - Simple PHP functions for theme integration<\/li>\n<\/ul>\n\n<h4>Usage<\/h4>\n\n<p><strong>Shortcode:<\/strong><\/p>\n\n<pre><code>[dropposu_subtitle]\n<\/code><\/pre>\n\n<p><strong>In Theme Templates:<\/strong><\/p>\n\n<pre><code>&lt;?php dropposu_subtitle(); ?&gt;\n<\/code><\/pre>\n\n<p><strong>With HTML Wrapper:<\/strong><\/p>\n\n<pre><code>&lt;?php dropposu_subtitle(0, '&lt;h2 class=\"subtitle\"&gt;', '&lt;\/h2&gt;'); ?&gt;\n<\/code><\/pre>\n\n<p><strong>WPGraphQL:<\/strong><\/p>\n\n<pre><code>query {\n  post(id: \"\/my-post\/\", idType: SLUG) {\n    title\n    subtitle\n  }\n}\n<\/code><\/pre>\n\n<p><strong>REST API:<\/strong><\/p>\n\n<p>Access via <code>\/wp-json\/wp\/v2\/posts\/123<\/code> - response includes <code>dropposu_subtitle<\/code> field.<\/p>\n\n<h3>Developer Documentation<\/h3>\n\n<h4>Functions<\/h4>\n\n<p><strong>dropposu_subtitle( $post_id, $before, $after )<\/strong><\/p>\n\n<p>Display the subtitle.<\/p>\n\n<p>Parameters:\n* <code>$post_id<\/code> (int) - Post ID. Default: current post\n* <code>$before<\/code> (string) - HTML before subtitle\n* <code>$after<\/code> (string) - HTML after subtitle<\/p>\n\n<p><strong>get_dropposu_subtitle( $post_id, $before, $after )<\/strong><\/p>\n\n<p>Get the subtitle (returns string, does not echo).<\/p>\n\n<p>Parameters:\n* <code>$post_id<\/code> (int) - Post ID. Default: current post\n* <code>$before<\/code> (string) - HTML before subtitle\n* <code>$after<\/code> (string) - HTML after subtitle<\/p>\n\n<h3>Support<\/h3>\n\n<p>For support, please visit the plugin settings page or contact the developer at https:\/\/dropndot.com<\/p>\n\n<!--section=installation-->\n<ol>\n<li>Upload the plugin files to <code>\/wp-content\/plugins\/dropndot-post-subtitle\/<\/code><\/li>\n<li>Activate the plugin through the 'Plugins' screen in WordPress<\/li>\n<li>Go to Settings \u2192 Dropndot Post Subtitle to configure which post types should support subtitles<\/li>\n<li>Start adding subtitles to your posts!<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt id=\"where%20is%20the%20subtitle%20field%20in%20gutenberg%3F\"><h3>Where is the subtitle field in Gutenberg?<\/h3><\/dt>\n<dd><p>The subtitle field appears in the right sidebar panel, below the Featured Image section. Make sure you have enabled subtitle support for that post type in Settings \u2192 Dropndot Post Subtitle.<\/p><\/dd>\n<dt id=\"where%20is%20the%20subtitle%20field%20in%20classic%20editor%3F\"><h3>Where is the subtitle field in Classic Editor?<\/h3><\/dt>\n<dd><p>The subtitle field appears right after the title field at the top of the editor.<\/p><\/dd>\n<dt id=\"how%20do%20i%20display%20the%20subtitle%20in%20my%20theme%3F\"><h3>How do I display the subtitle in my theme?<\/h3><\/dt>\n<dd><p>Use <code>&lt;?php dropposu_subtitle(); ?&gt;<\/code> in your theme template files where you want the subtitle to appear.<\/p><\/dd>\n<dt id=\"can%20i%20use%20subtitles%20with%20custom%20post%20types%3F\"><h3>Can I use subtitles with custom post types?<\/h3><\/dt>\n<dd><p>Yes! Go to Settings \u2192 Dropndot Post Subtitle and enable subtitle support for any public post type.<\/p><\/dd>\n<dt id=\"does%20this%20work%20with%20wpgraphql%3F\"><h3>Does this work with WPGraphQL?<\/h3><\/dt>\n<dd><p>Yes! The plugin automatically adds a <code>subtitle<\/code> field to all supported post types in your GraphQL schema.<\/p><\/dd>\n<dt id=\"does%20this%20work%20with%20the%20rest%20api%3F\"><h3>Does this work with the REST API?<\/h3><\/dt>\n<dd><p>Yes! Subtitles are available via the <code>dropposu_subtitle<\/code> field in REST API responses.<\/p><\/dd>\n<dt id=\"can%20i%20use%20shortcodes%3F\"><h3>Can I use shortcodes?<\/h3><\/dt>\n<dd><p>Yes! Use <code>[dropposu_subtitle]<\/code> in your content or widgets.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.0.0<\/h4>\n\n<ul>\n<li>Initial public release<\/li>\n<\/ul>","raw_excerpt":"Add subtitles to posts, pages, and custom post types. Supports Gutenberg, Classic Editor, WPGraphQL, REST API, and shortcodes.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/272003","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=272003"}],"author":[{"embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/dropndot"}],"wp:attachment":[{"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=272003"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=272003"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=272003"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=272003"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=272003"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/da.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=272003"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}