{"id":35217,"date":"2015-03-19T09:48:00","date_gmt":"2015-03-19T09:48:00","guid":{"rendered":"https:\/\/wordpress.org\/plugins-wp\/post-series-manager\/"},"modified":"2018-01-24T02:08:47","modified_gmt":"2018-01-24T02:08:47","slug":"post-series-manager","status":"publish","type":"plugin","link":"https:\/\/srd.wordpress.org\/plugins\/post-series-manager\/","author":13708395,"comment_status":"closed","ping_status":"closed","template":"","meta":{"version":"1.2.1","stable_tag":"1.2.1","tested":"4.9.29","requires":"3.8","requires_php":"","requires_plugins":"","header_name":"Post Series Manager","header_author":"Jeffrey de Wit, Adam Soucie","header_description":"","assets_banners_color":"5d2650","last_updated":"2018-01-24 02:08:47","external_support_url":"","external_repository_url":"","donate_link":"","header_plugin_uri":"http:\/\/cheffism.com\/post-series-manager\/","header_author_uri":"http:\/\/cheffism.com\/","rating":5,"author_block_rating":0,"active_installs":20,"downloads":4162,"num_ratings":3,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":[],"upgrade_notice":[],"ratings":{"1":0,"2":0,"3":0,"4":0,"5":"3"},"assets_icons":{"icon-128x128.jpg":{"filename":"icon-128x128.jpg","revision":"1808307","resolution":"128x128","location":"assets","width":128,"height":128},"icon-256x256.jpg":{"filename":"icon-256x256.jpg","revision":"1808307","resolution":"256x256","location":"assets","width":256,"height":256}},"assets_banners":{"banner-772x250.jpg":{"filename":"banner-772x250.jpg","revision":"1808309","resolution":"772x250","location":"assets","width":772,"height":250}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0.0","1.0.1","1.0.2","1.1","1.2.0","1.2.1"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1115921","resolution":"1","location":"assets","width":694,"height":146},"screenshot-2.png":{"filename":"screenshot-2.png","revision":"1115921","resolution":"2","location":"assets","width":494,"height":95},"screenshot-3.png":{"filename":"screenshot-3.png","revision":"1115921","resolution":"3","location":"assets","width":288,"height":200}},"screenshots":{"1":"An example of a list of posts in a series, automatically placed at the top of a post.","2":"An example of a call to action at the end of a post, only shows up if there is a next post in the series.","3":"Adding a post to a series is as simple as adding a tag to it."}},"plugin_section":[],"plugin_tags":[86],"plugin_category":[],"plugin_contributors":[92165,92166],"plugin_business_model":[],"class_list":["post-35217","plugin","type-plugin","status-publish","hentry","plugin_tags-post","plugin_contributors-adamsoucie","plugin_contributors-cheffheid","plugin_committers-adamsoucie","plugin_committers-cheffheid"],"banners":{"banner":"https:\/\/ps.w.org\/post-series-manager\/assets\/banner-772x250.jpg?rev=1808309","banner_2x":false,"banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/post-series-manager\/assets\/icon-128x128.jpg?rev=1808307","icon_2x":"https:\/\/ps.w.org\/post-series-manager\/assets\/icon-256x256.jpg?rev=1808307","generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/post-series-manager\/assets\/screenshot-1.png?rev=1115921","caption":"An example of a list of posts in a series, automatically placed at the top of a post."},{"src":"https:\/\/ps.w.org\/post-series-manager\/assets\/screenshot-2.png?rev=1115921","caption":"An example of a call to action at the end of a post, only shows up if there is a next post in the series."},{"src":"https:\/\/ps.w.org\/post-series-manager\/assets\/screenshot-3.png?rev=1115921","caption":"Adding a post to a series is as simple as adding a tag to it."}],"raw_content":"<!--section=description-->\n<p>This plugin will help you manage and display post series more easily. You'll be able to create\/assign series and display other posts in the series.<\/p>\n\n<p>It consists of a custom taxonomy (<code>post-series<\/code>) and two shortcodes <code>[post_series_block]<\/code> and <code>[post_series_nav]<\/code>.<\/p>\n\n<p>It will automatically display a list of posts in the series at the top of a post and a link to the next post in the series when applicable.<\/p>\n\n<!--section=installation-->\n<ol>\n<li>Upload the <code>post-series-manager<\/code> folder to the <code>\/wp-content\/plugins\/<\/code> directory<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<li>Start adding series tags to your posts like you would a regular tag<\/li>\n<\/ol>\n\n<!--section=faq-->\n<dl>\n<dt>Installation Instructions<\/dt>\n<dd><ol>\n<li>Upload the <code>post-series-manager<\/code> folder to the <code>\/wp-content\/plugins\/<\/code> directory<\/li>\n<li>Activate the plugin through the 'Plugins' menu in WordPress<\/li>\n<li>Start adding series tags to your posts like you would a regular tag<\/li>\n<\/ol><\/dd>\n<dt>I don't want it to show up before\/after\/somewhere else, what do I do?<\/dt>\n<dd><p>The plugin is set up in such a way that the content filters that are put in place can be removed fairly simply. Add one, or both, of the following to your functions.php:<\/p>\n\n<pre><code>\/\/ Remove the shortcode that's automatically added before the content\nremove_filter( 'the_content', array( $post_series_manager, 'post_series_before' ) );\n\/\/ Remove the shortcode that's automatically added after the content\nremove_filter( 'the_content', array( $post_series_manager, 'post_series_after' ) );\n<\/code><\/pre><\/dd>\n<dt>How do I use the shortcodes?<\/dt>\n<dd><p>The shortcodes are simple and have no additional parameters to use. The shortcodes that are available are:<\/p>\n\n<ul>\n<li>[post_series_block] - this is normally added before the content<\/li>\n<li>[post_series_nav] - this is normally added after the content<\/li>\n<\/ul><\/dd>\n<dt>Can I filter stuff?<\/dt>\n<dd><p>A number of filters have been included, and more are to follow.<\/p>\n\n<p>The filters that are included (subject to change):<\/p>\n\n<pre><code>\/\/ Filters \"This post of part of the series: \" text\npost-series-manager-series-text\n\n\/\/ Filters the \" (Current)\" text\npost-series-manager-current-text\n\n\/\/ Filters the \"Continue reading this series:\" text\npost-series-manager-next-text\n\n\/\/ Filters the \"Other posts in this series:\" text\npost-series-list-intro-text\n\n\/\/ Filters the start \"&lt;ol&gt;\" tag\npost-series-list-opening-tags\n\n\/\/ Filters the ending \"&lt;\/ol&gt;\" tag\npost-series-list-ending-tags\n<\/code><\/pre>\n\n<p>Be very aware that if you change the opening ol to ul, you will also want to change the ending ol to match.<\/p><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.2.1<\/h4>\n\n<ul>\n<li>Fixed unexpected output during activation error.<\/li>\n<li>Enabled <code>show_in_rest<\/code> for REST API and Gutenberg support.<\/li>\n<\/ul>\n\n<h4>1.2.0<\/h4>\n\n<ul>\n<li>Added \"start\" attribute to ol to follow the count of all posts in the series<\/li>\n<li>Cleaned up and updated Dutch translations<\/li>\n<li>Fixed existing filters to actually do something<\/li>\n<li>Added three more filters, so you can change the list type from ol to ul or change the intro text<\/li>\n<\/ul>\n\n<h4>1.1.0<\/h4>\n\n<ul>\n<li>Cleaned up some code to match WP standards<\/li>\n<li>Post List now supports more than 5 posts\n\n<ul>\n<li>Displays up to 2 posts before and after the current post<\/li>\n<\/ul><\/li>\n<\/ul>\n\n<h4>1.0.2<\/h4>\n\n<ul>\n<li>Fixed a small, but nasty, bug with a div not getting closed properly.<\/li>\n<li>Added some filters.<\/li>\n<\/ul>\n\n<h4>1.0.1<\/h4>\n\n<ul>\n<li>Changed unordered list to an ordered one, because semantics<\/li>\n<\/ul>\n\n<h4>1.0<\/h4>\n\n<ul>\n<li>First release.<\/li>\n<\/ul>","raw_excerpt":"This plugin will help you manage and display post series more easily. You&#039;ll be able to create\/assign series assign posts to it.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/35217","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=35217"}],"author":[{"embeddable":true,"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/cheffheid"}],"wp:attachment":[{"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=35217"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=35217"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=35217"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=35217"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=35217"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/srd.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=35217"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}