{"id":74112,"date":"2017-09-02T17:11:24","date_gmt":"2017-09-02T17:11:24","guid":{"rendered":"https:\/\/wordpress.org\/plugins\/sewn-in-simple-social-optimization\/"},"modified":"2017-09-02T18:42:24","modified_gmt":"2017-09-02T18:42:24","slug":"sewn-in-simple-social-optimization","status":"publish","type":"plugin","link":"https:\/\/li.wordpress.org\/plugins\/sewn-in-simple-social-optimization\/","author":70828,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_crdt_document":"","version":"1.0.2","stable_tag":"1.0.2","tested":"4.8.28","requires":"3.6.1","requires_php":"","requires_plugins":"","header_name":"Sewn In Simple Social Optimization","header_author":"Jupitercow","header_description":"Adds a very simple, clean interface for controlling sharing of website content on social media sites. Currently through Facebook Open Graph and Twitter APIs.","assets_banners_color":"989a8b","last_updated":"2017-09-02 18:42:24","external_support_url":"","external_repository_url":"","donate_link":"https:\/\/www.paypal.com\/cgi-bin\/webscr?cmd=_donations&business=jacobsnyder%40gmail%2ecom&lc=US&item_name=Jacob%20Snyder&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted","header_plugin_uri":"https:\/\/wordpress.org\/plugins\/sewn-in-simple-social\/","header_author_uri":"http:\/\/Jupitercow.com\/","rating":0,"author_block_rating":0,"active_installs":10,"downloads":1312,"num_ratings":0,"support_threads":0,"support_threads_resolved":0,"author_block_count":0,"sections":["description","installation","faq","changelog"],"tags":[],"upgrade_notice":{"1.0.2":"<p>Removed array short syntax, so that we can now support WordPress PHP requirements (5.2.4).<\/p>","1.0.1":"<p>This is the first version in the Wordpress repository.<\/p>"},"ratings":{"1":0,"2":0,"3":0,"4":0,"5":0},"assets_icons":{"icon-128x128.png":{"filename":"icon-128x128.png","revision":"1723707","resolution":"128x128","location":"assets"},"icon-256x256.png":{"filename":"icon-256x256.png","revision":"1723707","resolution":"256x256","location":"assets"}},"assets_banners":{"banner-1544x500.jpg":{"filename":"banner-1544x500.jpg","revision":"1723707","resolution":"1544x500","location":"assets"},"banner-772x250.jpg":{"filename":"banner-772x250.jpg","revision":"1723707","resolution":"772x250","location":"assets"}},"assets_blueprints":{},"all_blocks":[],"tagged_versions":["1.0.1","1.0.2"],"block_files":[],"assets_screenshots":{"screenshot-1.png":{"filename":"screenshot-1.png","revision":"1723707","resolution":"1","location":"assets"},"screenshot-2.png":{"filename":"screenshot-2.png","revision":"1723707","resolution":"2","location":"assets"}},"screenshots":{"1":"The Social panel added to posts.","2":"The Social panel with <a href=\"https:\/\/wordpress.org\/plugins\/sewn-in-xml-sitemap\/\">Sewn In XML Sitemap<\/a> &amp; <a href=\"https:\/\/wordpress.org\/plugins\/sewn-in-simple-seo\/\">Sewn In Simple SEO<\/a> installed."},"jetpack_post_was_ever_published":false},"plugin_section":[],"plugin_tags":[4101,4195,186],"plugin_category":[55],"plugin_contributors":[82642,82641],"plugin_business_model":[],"class_list":["post-74112","plugin","type-plugin","status-publish","hentry","plugin_tags-meta-data","plugin_tags-search-engine","plugin_tags-seo","plugin_category-seo-and-marketing","plugin_contributors-ekaj","plugin_contributors-jcow","plugin_committers-jcow"],"banners":{"banner":"https:\/\/ps.w.org\/sewn-in-simple-social-optimization\/assets\/banner-772x250.jpg?rev=1723707","banner_2x":"https:\/\/ps.w.org\/sewn-in-simple-social-optimization\/assets\/banner-1544x500.jpg?rev=1723707","banner_rtl":false,"banner_2x_rtl":false},"icons":{"svg":false,"icon":"https:\/\/ps.w.org\/sewn-in-simple-social-optimization\/assets\/icon-128x128.png?rev=1723707","icon_2x":"https:\/\/ps.w.org\/sewn-in-simple-social-optimization\/assets\/icon-256x256.png?rev=1723707","generated":false},"screenshots":[{"src":"https:\/\/ps.w.org\/sewn-in-simple-social-optimization\/assets\/screenshot-1.png?rev=1723707","caption":"The Social panel added to posts."},{"src":"https:\/\/ps.w.org\/sewn-in-simple-social-optimization\/assets\/screenshot-2.png?rev=1723707","caption":"The Social panel with <a href=\"https:\/\/wordpress.org\/plugins\/sewn-in-xml-sitemap\/\">Sewn In XML Sitemap<\/a> &amp; <a href=\"https:\/\/wordpress.org\/plugins\/sewn-in-simple-seo\/\">Sewn In Simple SEO<\/a> installed."}],"raw_content":"<!--section=description-->\n<p>Adds a fast, simple interface for adding Social Media meta data to pages and posts. Designed to remove all of the extra stuff that you just won't use. It is made to be straight forward for users with no confusing extras and no annoying ads. So you can enjoy using it and feel comfortable putting it before a client.<\/p>\n\n<p>This can be used on its own, but it is more poweful when used with the <a href=\"https:\/\/wordpress.org\/plugins\/sewn-in-simple-seo\/\">Sewn In Simple SEO<\/a> plugin.<\/p>\n\n<ul>\n<li>Choose which post types it is added to (public post types by default)<\/li>\n<li>Integrates nicely with the <a href=\"https:\/\/wordpress.org\/plugins\/sewn-in-simple-seo\/\">Sewn In Simple SEO<\/a> plugin, so they get merged into one panel for editing<\/li>\n<\/ul>\n\n<p>Very simple, no cruft or extra features you won't use.<\/p>\n\n<h4>Control what post types are added<\/h4>\n\n<p>By default only pages and posts are added, but you can remove either of those and\/or add more using this filter:<\/p>\n\n<pre><code>\/**\n * Completely replace the post types in the XML sitemap and SEO edit functionality\n *\n * This will replace the default completely. Returns: array('news','event')\n *\n * The result is to remove 'post' and 'page' post types and to add 'news' and \n * 'event' post types\n *\n * @param   array   $post_types List of post types to be added to the XML Sitemap\n * @return  array   $post_types Modified list of post types\n *\/\nadd_filter( 'sewn\/seo\/post_types', 'custom_sitemap_post_types' );\nfunction custom_sitemap_post_types( $post_types ) {\n    $post_types = array('news','event');\n    return $post_types;\n}\n<\/code><\/pre>\n\n<h4>Compatibility<\/h4>\n\n<p>Works with the <a href=\"https:\/\/wordpress.org\/plugins\/sewn-in-simple-seo\/\">Sewn In Simple SEO<\/a> plugin.<\/p>\n\n<!--section=installation-->\n<ul>\n<li>Copy the folder into your plugins folder, or use the \"Add New\" plugin feature.<\/li>\n<li>Activate the plugin via the Plugins admin page<\/li>\n<\/ul>\n\n<!--section=faq-->\n<dl>\n<dt>Installation Instructions<\/dt>\n<dd><ul>\n<li>Copy the folder into your plugins folder, or use the \"Add New\" plugin feature.<\/li>\n<li>Activate the plugin via the Plugins admin page<\/li>\n<\/ul><\/dd>\n<dt>No questions yet.<\/dt>\n<dd><\/dd>\n\n<\/dl>\n\n<!--section=changelog-->\n<h4>1.0.2 - 2017-09-02<\/h4>\n\n<ul>\n<li>Removed array short syntax, updated meta style.<\/li>\n<\/ul>\n\n<h4>1.0.1 - 2017-08-30<\/h4>\n\n<ul>\n<li>Added to WordPress.org Repo.<\/li>\n<\/ul>\n\n<h4>1.0.0 - 2017-02-29<\/h4>\n\n<ul>\n<li>Initial split off of the SEO plugin.<\/li>\n<\/ul>","raw_excerpt":"A very simple SEO interface to update Twitter and Facebook meta tags.","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin\/74112","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin"}],"about":[{"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/types\/plugin"}],"replies":[{"embeddable":true,"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/comments?post=74112"}],"author":[{"embeddable":true,"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wporg\/v1\/users\/jcow"}],"wp:attachment":[{"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/media?parent=74112"}],"wp:term":[{"taxonomy":"plugin_section","embeddable":true,"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_section?post=74112"},{"taxonomy":"plugin_tags","embeddable":true,"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_tags?post=74112"},{"taxonomy":"plugin_category","embeddable":true,"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_category?post=74112"},{"taxonomy":"plugin_contributors","embeddable":true,"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_contributors?post=74112"},{"taxonomy":"plugin_business_model","embeddable":true,"href":"https:\/\/li.wordpress.org\/plugins\/wp-json\/wp\/v2\/plugin_business_model?post=74112"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}