{"id":5331,"date":"2025-02-24T11:52:04","date_gmt":"2025-02-24T11:52:04","guid":{"rendered":"https:\/\/s-o-s.net\/distributor-remote-quickedit\/"},"modified":"2025-02-24T11:52:04","modified_gmt":"2025-02-24T11:52:04","slug":"distributor-remote-quickedit","status":"publish","type":"post","link":"http:\/\/s-o-s.net\/en_gb\/distributor-remote-quickedit\/","title":{"rendered":"Distributor \u2013 Remote Quickedit"},"content":{"rendered":"<p> <br \/>\n<\/p>\n<article id=\"post-169541\" class=\"alignwide post-169541 plugin type-plugin status-publish hentry plugin_tags-distributor plugin_tags-quickedit plugin_contributors-carstenbach plugin_business_model-community plugin_committers-carstenbach\">\n<div class=\"plugin-banner\" id=\"plugin-banner-distributor-remote-quickedit\"><\/div>\n<header class=\"plugin-header\">\n<div class=\"plugin-notice notice notice-warning notice-alt\">\n<p>This plugin <strong>hasn\u0092t been tested with the latest 3 major releases of WordPress<\/strong>. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.<\/p>\n<\/div>\n<p><!-- .plugin-notice -->\t\t<\/p>\n<div class=\"entry-heading-container\">\n<div>\n<div class=\"entry-thumbnail\">\n\t\t\t\t\t<img decoding=\"async\" class=\"plugin-icon\" srcset=\"https:\/\/ps.w.org\/distributor-remote-quickedit\/assets\/icon-128x128.png?rev=2865529, https:\/\/ps.w.org\/distributor-remote-quickedit\/assets\/icon-256x256.png?rev=2865529 2x\" src=\"https:\/\/ps.w.org\/distributor-remote-quickedit\/assets\/icon-256x256.png?rev=2865529\" alt=\"\">\t\t\t\t<\/div>\n<div>\n<h1 class=\"plugin-title\">Distributor \u2013 Remote Quickedit<\/h1>\n<p>\t\t\t\t\t<span class=\"byline\">By <span class=\"author vcard\"><a target=\"_blank\" class=\"url fn n\" href=\"https:\/\/profiles.wordpress.org\/carstenbach\/\" rel=\"noopener\">Carsten Bach<\/a><\/span><\/span>\n\t\t\t\t<\/div>\n<\/p><\/div>\n<div class=\"plugin-actions\">\n<div class=\"wp-block-button is-small plugin-download download-button\"><a target=\"_blank\" class=\"wp-block-button__link wp-element-button\" href=\"https:\/\/downloads.wordpress.org\/plugin\/distributor-remote-quickedit.0.2.2.zip\" rel=\"noopener\">Download<\/a><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<\/header>\n<p><!-- .entry-header --><\/p>\n<p>\t<span id=\"description\"><\/span><br \/>\n\t<span id=\"reviews\"><\/span><br \/>\n\t<span id=\"installation\"><\/span><br \/>\n\t<span id=\"developers\"><\/span><br \/>\n\t<span id=\"advanced\" class=\"\"><\/span><br \/>\n\t<span id=\"section-links\"><\/p>\n<ul class=\"tabs clear\">\n<li id=\"tablink-description\"><a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/distributor-remote-quickedit\/#description\" rel=\"noopener\">Details<\/a><\/li>\n<li id=\"tablink-reviews\"><a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/distributor-remote-quickedit\/#reviews\" rel=\"noopener\">Reviews<\/a><\/li>\n<li id=\"tablink-developers\"><a target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/distributor-remote-quickedit\/#developers\" rel=\"noopener\">Development<\/a><\/li>\n<\/ul>\n<div id=\"link-support\">\n\t\t\t<a target=\"_blank\" href=\"https:\/\/wordpress.org\/support\/plugin\/distributor-remote-quickedit\/\" rel=\"noopener\">Support<\/a>\n\t\t<\/div>\n<p>\t<\/span><br \/>\n\t<script type=\"text\/javascript\">if ( '#changelog' == window.location.hash ) { window.setTimeout( function() { window.location.hash=\"#developers\"; }, 10 ); }<\/script><\/p>\n<div class=\"entry-content\">\n<div id=\"tab-description\" class=\"plugin-description section\">\n<h2 id=\"description-header\">Description<\/h2>\n<p>Re-enable quickedit for distributed posts on the receiving site within a multisite network. This allows you to make changes to the original post from the remote site. This is a small add-on for the glorious <a target=\"_blank\" href=\"https:\/\/distributorplugin.com\/\" rel=\"nofollow ugc noopener\">Distributor<\/a> plugin by <em>10up<\/em>.<\/p>\n<p>This Add-on is maintained at and deployed from <a target=\"_blank\" href=\"https:\/\/github.com\/carstingaxion\/distributor-remote-quickedit\" rel=\"nofollow ugc noopener\">carstingaxion\/distributor-remote-quickedit<\/a> on github.<\/p>\n<h3>Features<\/h3>\n<ul>\n<li>Use native WordPress quickedit on the receiving side of a distributed post to make minor changes, which is disabled by the <em>Distributor<\/em>-plugin by default.<\/li>\n<\/ul>\n<h3>Compatibility<\/h3>\n<p>This plugin is an add-on for &amp; requires:<\/p>\n<ul>\n<li>Distributor (<a target=\"_blank\" href=\"https:\/\/distributorplugin.com\/\" rel=\"nofollow ugc noopener\">Website<\/a>|<a target=\"_blank\" href=\"https:\/\/github.com\/10up\/distributor\" rel=\"nofollow ugc noopener\">GitHub<\/a>) (<em>only tested up to version 1.9.1, maybe not yet ready for the new 2.0.x<\/em>)<\/li>\n<\/ul>\n<h3>Usage<\/h3>\n<p><strong><em>This plugin does nothing by default.<\/em><\/strong><\/p>\n<p>Being able to modify posts, that were syndicated from a remote source, is a risky thing. To prevent any unwanted side-effects you have to pro-actively enable this plugin by code.<\/p>\n<p>In order to re-enable the quick-edit functionality for a particular post_type you need to call <code>add_post_type_support()<\/code> for a support-feature called <em><code>distributor-remote-quickedit<\/code><\/em>. Do this for every desired post_type before this plugin loads.<\/p>\n<p>With a post_type of <code>book<\/code>, you could do it like so:<\/p>\n<pre><code>add_action( 'admin_init', function () {\n    add_post_type_support( 'book', 'distributor-remote-quickedit' );\n}, 9 );\n<\/code><\/pre>\n<p><strong>It\u2019s important to declare your post_type_supports before the plugin is executed on <code>admin_init<\/code> with a default priority of <code>10<\/code>!<\/strong><\/p>\n<\/div>\n<div id=\"faq\" class=\"plugin-faq section\">\n<h2 id=\"faq-header\">FAQ<\/h2>\n<dl>\n<dt id=\"does%20this%20plugin%20work%20with%20wordpress%20multisite%3F\">\n<h3>Does this plugin work with WordPress Multisite?<\/h3>\n<\/dt>\n<dd>\n<p>Yes, it is made for multisites with internal distribution setup.<\/p>\n<\/dd>\n<dt id=\"the%20distributor%20plugin%20disables%20the%20use%20of%20quickedit%20for%20reasons.%20why%20would%20i%20want%20to%20change%20that%3F\">\n<h3>The Distributor plugin disables the use of quickedit for reasons. Why would I want to change that?<\/h3>\n<\/dt>\n<dd>\n<p>It totally depends on your use case \ud83d\ude09<\/p>\n<p>In our case, on a large multisite network, there was only one out of almost 20 post_types, that needed this <em>feature<\/em>, for sure \u2013 real-world-use-cases may be rare.<\/p>\n<p><!-- changelog --><\/p>\n<\/dd>\n<\/dl>\n<\/div>\n<div id=\"tab-reviews\" class=\"plugin-reviews section\">\n<h2 id=\"reviews-header\">Reviews<\/h2>\n<div class=\"notice notice-warning notice-alt\">\n<p>There are no reviews for this plugin.<\/p>\n<\/div>\n<\/div>\n<div id=\"tab-developers\" class=\"plugin-developers section\">\n<h2 id=\"developers-header\">Contributors &amp; Developers<\/h2>\n<div class=\"plugin-contributors\">\n<p>\u201cDistributor \u2013 Remote Quickedit\u201d is open source software. The following people have contributed to this plugin.<\/p>\n<p><span class=\"screen-reader-text\">Contributors<\/span><\/p>\n<ul id=\"contributors-list\" class=\"contributors-list\">\n<li>\n\t\t\t\t<img decoding=\"async\" alt=\"\" src=\"https:\/\/secure.gravatar.com\/avatar\/f99ef16a50d87ccfe464631d036468e3b795ba0c7b1200d1afb01a100aaf7c8f?s=32&amp;d=mm&amp;r=g\" srcset=\"https:\/\/secure.gravatar.com\/avatar\/f99ef16a50d87ccfe464631d036468e3b795ba0c7b1200d1afb01a100aaf7c8f?s=64&amp;d=mm&amp;r=g 2x\" class=\"avatar avatar-32 photo\" height=\"32\" width=\"32\">\t\t\t\t<a target=\"_blank\" href=\"https:\/\/profiles.wordpress.org\/carstenbach\/\" rel=\"noopener\"><br \/>\n\t\t\t\t\tCarsten Bach\t\t\t\t<\/a>\n\t\t\t<\/li>\n<\/ul><\/div>\n<div class=\"plugin-development\">\n<p><a target=\"_blank\" href=\"https:\/\/translate.wordpress.org\/projects\/wp-plugins\/distributor-remote-quickedit\" rel=\"noopener\">Translate \u201cDistributor \u2013 Remote Quickedit\u201d into your language.<\/a><\/p>\n<h3>Interested in development?<\/h3>\n<p><a target=\"_blank\" href=\"https:\/\/plugins.trac.wordpress.org\/browser\/distributor-remote-quickedit\/\" rel=\"noopener\" class=\"broken_link\">Browse the code<\/a>, check out the <a target=\"_blank\" href=\"https:\/\/plugins.svn.wordpress.org\/distributor-remote-quickedit\/\" rel=\"noopener\">SVN repository<\/a>, or subscribe to the <a target=\"_blank\" href=\"https:\/\/plugins.trac.wordpress.org\/log\/distributor-remote-quickedit\/\" rel=\"noopener\" class=\"broken_link\">development log<\/a> by <a target=\"_blank\" href=\"https:\/\/plugins.trac.wordpress.org\/log\/distributor-remote-quickedit\/?limit=100&amp;mode=stop_on_copy&amp;format=rss\" rel=\"noopener\" class=\"broken_link\">RSS<\/a>.<\/p>\n<\/div>\n<\/div><\/div>\n<p><!-- .entry-content --><\/p>\n<p>\t<!-- .entry-meta --><br \/>\n<\/article>\n<p><br \/>\n<br \/><a href=\"https:\/\/wordpress.org\/plugins\/distributor-remote-quickedit\/\" target=\"_blank\" rel=\"noopener\">Source link <\/a><\/p>","protected":false},"excerpt":{"rendered":"<p>This plugin hasn\u0092t been tested with the latest 3 major releases of WordPress. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress. Distributor \u2013 Remote Quickedit By Carsten Bach Download Details Reviews Development Support Description Re-enable quickedit for distributed posts on the receiving [&hellip;]<\/p>","protected":false},"author":358,"featured_media":5332,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"give_campaign_id":0,"footnotes":""},"categories":[1933,39,40],"tags":[3333,3335,3334],"class_list":["post-5331","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-community-plugin","category-lite-version","category-wp-plugin-solution","tag-distributor","tag-quickedit","tag-remote"],"acf":[],"fifu_image_url":"https:\/\/ps.w.org\/distributor-remote-quickedit\/assets\/banner-772x250.png?rev=2865529","_links":{"self":[{"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/posts\/5331","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/users\/358"}],"replies":[{"embeddable":true,"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/comments?post=5331"}],"version-history":[{"count":0,"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/posts\/5331\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/media\/5332"}],"wp:attachment":[{"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/media?parent=5331"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/categories?post=5331"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/s-o-s.net\/en_gb\/wp-json\/wp\/v2\/tags?post=5331"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}